web/src/app/layout.js (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
import { Geist, Geist_Mono } from "next/font/google"; import Link from "next/link"; import "./globals.css"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); 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`} > <nav className="bg-white shadow dark:bg-gray-800 mb-8"> <div className="container mx-auto px-4"> <div className="flex items-center justify-between h-16"> <Link href="/" className="text-gray-800 dark:text-white font-bold" > Navigator </Link> <Link href="/browser" className="text-gray-600 dark:text-gray-300 hover:text-gray-800 dark:hover:text-white" > Browser Sessions </Link> </div> </div> </nav> {children} </body> </html> ); } |