diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 63a748d..cd0a93e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,56 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Poppins } 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 inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const poppins = Poppins({
- variable: "--font-poppins", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Chestnut Restaurant - Fine Dining West Cork", description: "Exceptional Irish cuisine in West Cork. Seasonally-driven fine dining celebrating local ingredients and chef expertise. Reserve your table for an unforgettable culinary experience.", keywords: "fine dining West Cork, Irish cuisine, seasonal menu, restaurant reservation, terroir, gastronomy, Chestnut", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Chestnut Restaurant - Fine Dining West Cork", description: "Exceptional Irish cuisine celebrating West Cork's finest ingredients and culinary excellence.", siteName: "Chestnut Restaurant", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/top-view-grilled-chicken-fillet-served-with-bulgur-vegetables-white-wine_141793-2435.jpg", alt: "Beautifully plated fine dining dish"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Chestnut Restaurant - Fine Dining West Cork", description: "Seasonal Irish cuisine celebrating terroir and local ingredients.", images: [
- "http://img.b2bpic.net/free-photo/top-view-grilled-chicken-fillet-served-with-bulgur-vegetables-white-wine_141793-2435.jpg"],
- },
-};
+ title: "Chestnut - West Cork Fine Dining", description: "Exceptional Irish cuisine, thoughtfully crafted. Reserve your intimate dining experience at Chestnut."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-