22 Commits

Author SHA1 Message Date
210ae440fd Update src/app/page.tsx 2026-03-03 17:01:24 +00:00
bb30918d5a Update src/app/layout.tsx 2026-03-03 17:01:22 +00:00
62d94c076e Update src/app/page.tsx 2026-03-03 16:39:30 +00:00
d3ac1cf812 Update src/app/page.tsx 2026-03-03 16:34:56 +00:00
670c2bd218 Update src/app/page.tsx 2026-03-03 16:29:00 +00:00
95cc433a79 Update src/app/styles/base.css 2026-03-03 16:24:04 +00:00
b088389d53 Update src/app/page.tsx 2026-03-03 16:24:00 +00:00
8fed2ff8a6 Update src/app/layout.tsx 2026-03-03 16:23:58 +00:00
0e2083dd57 Switch to version 1: modified src/app/styles/base.css 2026-03-03 16:21:18 +00:00
a8f87813bf Switch to version 1: modified src/app/page.tsx 2026-03-03 16:21:13 +00:00
b9ee952c74 Merge version_1 into main
Merge version_1 into main
2026-03-03 16:19:38 +00:00
7d3b199b9c Update src/app/page.tsx 2026-03-03 16:12:07 +00:00
a49f0bc5fe Update src/app/page.tsx 2026-03-03 16:06:47 +00:00
3efb98814a Merge version_1 into main
Merge version_1 into main
2026-03-03 16:06:39 +00:00
4f7b0bdd50 Merge version_3 into main
Merge version_3 into main
2026-03-03 16:04:15 +00:00
1d8ee59535 Update src/app/page.tsx 2026-03-03 16:04:08 +00:00
873dde88db Update src/app/layout.tsx 2026-03-03 16:04:06 +00:00
9b653b8d0d Merge version_2 into main
Merge version_2 into main
2026-03-03 16:00:41 +00:00
7eb0bf7506 Update src/app/styles/base.css 2026-03-03 16:00:35 +00:00
6c64a49be0 Update src/app/page.tsx 2026-03-03 16:00:34 +00:00
f68eb2a961 Update src/app/layout.tsx 2026-03-03 16:00:32 +00:00
427b13c319 Merge version_1 into main
Merge version_1 into main
2026-03-03 15:59:42 +00:00
3 changed files with 14 additions and 54 deletions

View File

@@ -1,56 +1,17 @@
import type { Metadata } from "next";
import { Roboto } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
import "./styles/globals.css";
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 | 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
}
};
title: "Culinary Haven | Award-Winning Fine Dining", description: "Experience exceptional cuisine crafted by award-winning chefs in an elegant atmosphere designed for unforgettable moments."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${roboto.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -15,16 +15,16 @@ import { Cake, Calendar, ChefHat, Flame, Leaf, Sparkles, Utensils, Wine } from '
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
defaultButtonVariant="hover-bubble"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="largeSizeMediumTitles"
background="circleGradient"
cardStyle="gradient-radial"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
cardStyle="glass-depth"
primaryButtonStyle="shadow"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
@@ -43,7 +43,7 @@ export default function LandingPage() {
<HeroSplitKpi
title="Culinary Artistry Meets Warm Hospitality"
description="Experience exceptional cuisine crafted by our award-winning chefs in an elegant atmosphere designed for unforgettable moments."
background={{ variant: "glowing-orb" }}
background={{ variant: "sparkles-gradient" }}
kpis={[
{ value: "20+", label: "Years of Excellence" },
{ value: "1000+", label: "Happy Guests Monthly" },

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-roboto), sans-serif;
font-family: var(--font-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-roboto), sans-serif;
font-family: var(--font-poppins), sans-serif;
}