Skip to content

Commit

Permalink
Refactor website layout
Browse files Browse the repository at this point in the history
  • Loading branch information
gnehs committed Jan 13, 2024
1 parent 21748c1 commit 1421cf8
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions app/(website)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ import Nav from "@/components/Nav";
import Footer from "@/components/Footer";
export default function Layout({ children }: { children: React.ReactNode }) {
return (
<>
<div className="flex min-h-screen flex-col bg-[#F8F3E8]">
<head>
<meta name="theme-color" content="#F8F3E8" />
</head>
<div className="flex min-h-screen flex-col bg-[#F8F3E8]">
<Nav />
<div className="grow">{children}</div>
<Footer />
</div>
</>
<Nav />
<div className="grow">{children}</div>
<Footer />
</div>
);
}

0 comments on commit 1421cf8

Please sign in to comment.