Merge version_3 into main #2
@@ -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";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
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"};
|
||||
|
||||
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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -65,6 +65,18 @@ export default function LandingPage() {
|
||||
{ text: "View Menu", href: "features" },
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-mature-businessman-looking-away_23-2147955371.jpg", alt: "Guest 1"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-sitting-library_273609-15843.jpg", alt: "Guest 2"
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/business-casual-asian-glasses-male-standing-portrait-hand-hold-laptop-with-happiness-confident-isolate-white-background_609648-1777.jpg", alt: "Guest 3"
|
||||
},
|
||||
]}
|
||||
avatarText="4.9★ rated by 500+ guests"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user