diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 55cba0b..349698b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,23 +6,22 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { Montserrat } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); export const metadata: Metadata = { - title: 'Bella Italia Ristorante | Authentic Italian Flavors', - description: 'Experience the true taste of Italy at Bella Italia Ristorante. Savor traditional pasta, pizza, and exquisite wines in a cozy, authentic atmosphere.', + title: 'Restaurant Tramontana | Croatian-Mediterranean Cuisine in Regensburg', + description: 'Savor authentic Croatian-Mediterranean dishes in the charming old town of Regensburg. Restaurant Tramontana offers an unforgettable culinary experience.', }; +const montserrat = Montserrat({ + variable: "--font-montserrat", subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -31,9 +30,7 @@ export default function RootLayout({ return ( - + {children}