Merge version_2 into main #3
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1410,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -72,7 +72,8 @@ export default function LandingPage() {
|
||||
<TextSplitAbout
|
||||
title="Our Story"
|
||||
description={[
|
||||
"Established in 2015, Éclat has become the premier destination for discerning diners seeking an extraordinary culinary journey. Our chef-founder's vision was simple yet profound: to create a space where passion for cooking meets genuine hospitality.", "We source only the finest ingredients from trusted purveyors worldwide. Our seasonal menu celebrates the best flavors nature has to offer, complemented by our award-winning wine collection curated by our sommelier.", "Every reservation is an opportunity to create memories that last a lifetime. From our intimate dining room to our personalized service, every detail reflects our commitment to excellence."]}
|
||||
"Established in 2015, Éclat has become the premier destination for discerning diners seeking an extraordinary culinary journey. Our chef-founder's vision was simple yet profound: to create a space where passion for cooking meets genuine hospitality.", "We source only the finest ingredients from trusted purveyors worldwide. Our seasonal menu celebrates the best flavors nature has to offer, complemented by our award-winning wine collection curated by our sommelier.", "Every reservation is an opportunity to create memories that last a lifetime. From our intimate dining room to our personalized service, every detail reflects our commitment to excellence."
|
||||
]}
|
||||
buttons={[{ text: "Learn Our Philosophy", href: "#about" }]}
|
||||
buttonAnimation="blur-reveal"
|
||||
showBorder={true}
|
||||
@@ -192,8 +193,8 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactFaq
|
||||
ctaTitle="Reserve Your Table"
|
||||
ctaDescription="Experience culinary excellence. Book your reservation today for an unforgettable evening of fine dining."
|
||||
ctaButton={{ text: "Make a Reservation", href: "https://example.com/reservations" }}
|
||||
ctaDescription="Book your reservation for an unforgettable dining experience."
|
||||
ctaButton={{ text: "Reserve Your Table Now", href: "https://example.com/reservations" }}
|
||||
ctaIcon={Phone}
|
||||
faqs={[
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user