diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c839552..f26f98a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,11 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; +import { Inter } from "next/font/google"; +import "@/styles/globals.css"; -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Bebek Protol MasBim - Authentic Indonesian Duck Restaurant", description: "Experience authentic Bebek Protol at MasBim restaurant in Ponorogo. Tender, shredded duck infused with aromatic Javanese spices."}; + title: "Bebek Protol MasBim", description: "Experience authentic Indonesian duck cuisine in Ponorogo"}; export default function RootLayout({ children, @@ -20,7 +14,7 @@ export default function RootLayout({ }) { return ( - + {children}