diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-05-30 11:41:19 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-05-30 11:41:19 -0400 |
| commit | 73e957caaf661900f1712c4217a73bb4fcfaa34b (patch) | |
| tree | 79b7f835c676e6f1911d60a4491495583bb8a0d3 /src/app/layout.tsx | |
| parent | 4afdb7370dcc8df71c648eb76a7e126cb888e65c (diff) | |
| download | alure-post-73e957caaf661900f1712c4217a73bb4fcfaa34b.tar.gz alure-post-73e957caaf661900f1712c4217a73bb4fcfaa34b.tar.bz2 alure-post-73e957caaf661900f1712c4217a73bb4fcfaa34b.zip | |
Base website
Diffstat (limited to 'src/app/layout.tsx')
| -rw-r--r-- | src/app/layout.tsx | 26 |
1 files changed, 14 insertions, 12 deletions
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 ( <html lang="en"> <body - className={`${geistSans.variable} ${geistMono.variable} antialiased`} + className={`${exo.className} antialiased`} > + <div className="sm:px-10 px-5 py-0.5 font-medium space-x-3 text-right"> + <a href="https://bnbmc.net" className="transition duration-150 ease-out hover:ease-in md:hover:text-red-500">bnbmc.net ↗</a> + <a href="https://alee14.me" className="transition duration-150 ease-out hover:ease-in md:hover:text-green-500">alee14.me ↗</a> + </div> + <Navbar /> {children} + <footer className="flex flex-col text-center py-3 space-y-2 bg-blue-950 text-light text-sm sm:text-base px-5 sm:px-0"> + <p>Alure Post is a fictional company made for the bits & Bytes Minecraft Server</p> + <p>This website is proudly written using Next.JS and Tailwind CSS</p> + </footer> </body> </html> ); |
