diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f01ef62..674bf60 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const dmSans = DM_Sans({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Elegancia | Award-Winning Fine Dining Restaurant", description: "Experience culinary excellence at Elegancia. Award-winning fine dining restaurant with Michelin stars, exceptional service, and exquisite cuisine. Reserve your table today.", keywords: "fine dining restaurant, luxury restaurant, gourmet cuisine, Michelin star, chef, cuisine, private dining, fine dining reservation", metadataBase: new URL("https://elegancia-restaurant.com"), - alternates: { - canonical: "https://elegancia-restaurant.com" - }, - openGraph: { - title: "Elegancia Fine Dining Restaurant", description: "Discover award-winning culinary excellence and refined hospitality at Elegancia.", url: "https://elegancia-restaurant.com", siteName: "Elegancia", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/restaurant-dinner-table-with-plates-cutlery-yellow-blue-glasses_140725-8444.jpg", alt: "luxury restaurant fine dining interior elegant" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Elegancia | Fine Dining Excellence", description: "Award-winning restaurant offering exceptional cuisine and service.", images: ["http://img.b2bpic.net/free-photo/restaurant-dinner-table-with-plates-cutlery-yellow-blue-glasses_140725-8444.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Elegancia Fine Dining", description: "Experience culinary excellence at Elegancia, an award-winning fine dining restaurant offering exquisite flavors, refined ambiance, and exceptional service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -