Desktop Footer

This commit is contained in:
adilallo
2025-07-25 23:45:43 -06:00
parent f770b7d3b7
commit 0539989be6
10 changed files with 516 additions and 265 deletions
+13 -14
View File
@@ -1,29 +1,28 @@
import { Geist, Geist_Mono } from "next/font/google";
import { Inter, Bricolage_Grotesque } from "next/font/google";
import "./globals.css";
import "./tailwind.css";
import Footer from "./components/Footer";
const geistSans = Geist({
variable: "--font-geist-sans",
const inter = Inter({
subsets: ["latin"],
weight: ["400"],
variable: "--font-inter",
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
const bricolageGrotesque = Bricolage_Grotesque({
subsets: ["latin"],
weight: ["400"],
variable: "--font-bricolage-grotesque",
});
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
<body className={`${inter.variable} ${bricolageGrotesque.variable}`}>
<div className="min-h-screen flex flex-col">
<main className="flex-1">{children}</main>
<Footer />
</div>
</body>
</html>
);