Merge version_2 into main #2
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1418,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -225,7 +225,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactFaq
|
||||
ctaTitle="Book Your Table"
|
||||
ctaDescription="Reserve your intimate dining experience at Chestnut. Limited seating ensures personalized service and culinary excellence."
|
||||
ctaDescription="Reserve your intimate dining experience at Chestnut. Our 18-guest intimate setting ensures personalized service and culinary excellence. We recommend 2–3 weeks advance booking to secure your preferred date."
|
||||
ctaButton={{ text: "Reserve Now", href: "mailto:reservations@chestnutcork.ie" }}
|
||||
ctaIcon={Calendar}
|
||||
faqs={[
|
||||
|
||||
Reference in New Issue
Block a user