Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 18ac62f8a7 | |||
| ecbd79efcc | |||
| 506154f1fa | |||
| 3dddd16d80 | |||
| 311ae510b3 | |||
| ef4d3cdc57 |
@@ -1,45 +1,17 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Poppins } from "next/font/google";
|
import "./styles/globals.css";
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const poppins = Poppins({
|
|
||||||
variable: "--font-poppins", subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Culinary Haven | Fine Dining Restaurant", description: "Experience award-winning cuisine and exceptional hospitality at Culinary Haven. Reserve your table today for an unforgettable fine dining experience.", keywords: "fine dining restaurant, gourmet cuisine, chef-driven restaurant, culinary excellence, reservation, upscale dining", openGraph: {
|
title: "Culinary Haven | Award-Winning Fine Dining", description: "Experience exceptional cuisine crafted by award-winning chefs in an elegant atmosphere designed for unforgettable moments."};
|
||||||
title: "Culinary Haven | Fine Dining Restaurant", description: "Experience award-winning cuisine and exceptional hospitality at Culinary Haven.", type: "website", siteName: "Culinary Haven", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/beautiful-decorated-table-with-pine-leaf_8353-10194.jpg", alt: "Fine dining ambiance at Culinary Haven"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Culinary Haven | Fine Dining Restaurant", description: "Experience award-winning cuisine and exceptional hospitality.", images: ["http://img.b2bpic.net/free-photo/beautiful-decorated-table-with-pine-leaf_8353-10194.jpg"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>{children}
|
||||||
<body
|
|
||||||
className={`${poppins.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1407,7 +1379,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,16 +15,16 @@ import { Cake, Calendar, ChefHat, Flame, Leaf, Sparkles, Utensils, Wine } from '
|
|||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-shift"
|
defaultButtonVariant="hover-bubble"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="entrance-slide"
|
||||||
borderRadius="soft"
|
borderRadius="soft"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="largeSizeMediumTitles"
|
sizing="largeSizeMediumTitles"
|
||||||
background="aurora"
|
background="circleGradient"
|
||||||
cardStyle="gradient-radial"
|
cardStyle="glass-depth"
|
||||||
primaryButtonStyle="radial-glow"
|
primaryButtonStyle="shadow"
|
||||||
secondaryButtonStyle="radial-glow"
|
secondaryButtonStyle="layered"
|
||||||
headingFontWeight="extrabold"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
@@ -43,7 +43,7 @@ export default function LandingPage() {
|
|||||||
<HeroSplitKpi
|
<HeroSplitKpi
|
||||||
title="Culinary Artistry Meets Warm Hospitality"
|
title="Culinary Artistry Meets Warm Hospitality"
|
||||||
description="Experience exceptional cuisine crafted by our award-winning chefs in an elegant atmosphere designed for unforgettable moments."
|
description="Experience exceptional cuisine crafted by our award-winning chefs in an elegant atmosphere designed for unforgettable moments."
|
||||||
background={{ variant: "aurora" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
kpis={[
|
kpis={[
|
||||||
{ value: "20+", label: "Years of Excellence" },
|
{ value: "20+", label: "Years of Excellence" },
|
||||||
{ value: "1000+", label: "Happy Guests Monthly" },
|
{ value: "1000+", label: "Happy Guests Monthly" },
|
||||||
|
|||||||
Reference in New Issue
Block a user