Changes to tidy up header

This commit is contained in:
adilallo
2025-08-07 08:48:52 -06:00
parent 0272011beb
commit 6bfcaf2aa0
7 changed files with 28 additions and 14 deletions
+2
View File
@@ -1,5 +1,6 @@
import { Inter, Bricolage_Grotesque } from "next/font/google";
import "./globals.css";
import HomeHeader from "./components/HomeHeader";
import Footer from "./components/Footer";
const inter = Inter({
@@ -19,6 +20,7 @@ export default function RootLayout({ children }) {
<html lang="en">
<body className={`${inter.variable} ${bricolageGrotesque.variable}`}>
<div className="min-h-screen flex flex-col">
<HomeHeader />
<main className="flex-1">{children}</main>
<Footer />
</div>