xsmall home header breakpoint

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