Skip to content

Commit

Permalink
feat: add made with fresh tag
Browse files Browse the repository at this point in the history
  • Loading branch information
minmaxw1024 committed Nov 17, 2024
1 parent f49f705 commit 34db1df
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion routes/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,19 @@ export default function Layout({ Component, state }: PageProps) {
return (
<div class="layout bg-base-100">
<Topbar />
<div class="pt-[70px] box-border">
<div class="py-[70px] box-border">
<Component />
</div>
<footer class="fixed bottom-0 left-0 right-0 flex items-center justify-center text-base-content bg-white py-3">
<a href="https://fresh.deno.dev">
<img
width="197"
height="37"
src="https://fresh.deno.dev/fresh-badge.svg"
alt="Made with Fresh"
/>
</a>
</footer>
</div>
);
}

0 comments on commit 34db1df

Please sign in to comment.