diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 2402da0..078294f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,48 +1,20 @@
import type { Metadata } from "next";
-import { Montserrat } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const montserrat = Montserrat({
- variable: "--font-montserrat", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Éclat – Luxury Fine Dining Restaurant", description: "Experience culinary excellence at Éclat. Award-winning fine dining with innovative cuisine, curated wines, and impeccable service.", keywords: "fine dining, luxury restaurant, gourmet cuisine, wine pairing, private dining, culinary experience", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Éclat – Luxury Fine Dining Restaurant", description: "Experience culinary excellence. Award-winning fine dining with innovative cuisine and impeccable service.", type: "website", siteName: "Éclat", images: [
- {
- url: "http://img.b2bpic.net/free-photo/side-view-friends-having-lunch_23-2150598364.jpg", alt: "Éclat Fine Dining Restaurant"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Éclat – Luxury Fine Dining", description: "Experience culinary excellence at our award-winning restaurant.", images: ["http://img.b2bpic.net/free-photo/side-view-friends-having-lunch_23-2150598364.jpg"],
- },
-};
+ title: "Éclat Fine Dining", description: "Experience culinary excellence at Éclat, a premier fine dining destination."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 8001cf2..d3ca958 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -72,7 +72,8 @@ export default function LandingPage() {