From c0b55e51de1fe6ad0b9f1f39987e0c39ac3c3605 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 11:53:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1422 +------------------------------------------- 1 file changed, 12 insertions(+), 1410 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0c267e9..aa70340 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,29 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; +import { Lora, Montserrat } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const lora = Lora({ + variable: "--font-serif", subsets: ["latin"], + weight: ["400", "500", "600", "700"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const montserrat = Montserrat({ + variable: "--font-sans", subsets: ["latin"], + weight: ["400", "500", "600", "700", "800"], }); export const metadata: Metadata = { - title: "La Siesta Saturn | Fresh Seafood & Waterfront Dining in Mangalia", description: "Authentic Mediterranean seafood restaurant on Mangalia's waterfront. Fresh daily catch, terrace views, live music. Reserve your table online or call for same-day seating.", keywords: "seafood restaurant Mangalia, Mediterranean dining, waterfront restaurant Romania, fresh fish, seaside dining, live music restaurant, private events", metadataBase: new URL("https://www.lasiestastarurn.ro"), - alternates: { - canonical: "https://www.lasiestastarurn.ro" - }, - openGraph: { - title: "La Siesta Saturn - Waterfront Seafood Dining in Mangalia", description: "Experience authentic Mediterranean seafood with stunning sea views and live entertainment. Book your table today.", url: "https://www.lasiestastarurn.ro", siteName: "La Siesta Saturn", images: [ - { - url: "http://img.b2bpic.net/free-photo/delicious-sea-food-wooden-table-bench-shore-concept_53876-23078.jpg", alt: "La Siesta Saturn waterfront terrace restaurant" - } - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "La Siesta Saturn | Fresh Seafood in Mangalia", description: "Waterfront Mediterranean dining with fresh daily catch and live music.", images: ["http://img.b2bpic.net/free-photo/delicious-sea-food-wooden-table-bench-shore-concept_53876-23078.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "La Siesta Saturn - Fresh Seafood Restaurant", description: "Authentic Mediterranean dining on Mangalia's waterfront. Fresh seafood, terrace views, and live music nights. Reserve your table today."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - -