From 73e957caaf661900f1712c4217a73bb4fcfaa34b Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 30 May 2025 11:41:19 -0400 Subject: Base website --- src/app/layout.tsx | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) (limited to 'src/app/layout.tsx') diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7fa87e..70fa805 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,19 +1,12 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import Navbar from "./components/Navbar"; +import { Exo_2 } from "next/font/google"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], -}); +const exo = Exo_2({ subsets: ['latin'] }) export const metadata: Metadata = { - title: "Create Next App", + title: "Alure Post", description: "Generated by create next app", }; @@ -25,9 +18,18 @@ export default function RootLayout({ return ( +
+ bnbmc.net ↗ + alee14.me ↗ +
+ {children} + ); -- cgit v1.2.3