Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ed9b07da3a | |||
| 1d8ee59535 | |||
| 873dde88db | |||
| 9b653b8d0d | |||
| 427b13c319 | |||
| 0b9f640c69 |
@@ -1,12 +1,23 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Poppins } from "next/font/google";
|
import { Roboto } from "next/font/google";
|
||||||
|
import { Halant } from "next/font/google";
|
||||||
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const poppins = Poppins({
|
const roboto = Roboto({
|
||||||
variable: "--font-poppins", subsets: ["latin"],
|
variable: "--font-roboto", subsets: ["latin"],
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
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"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
@@ -35,7 +46,7 @@ export default function RootLayout({
|
|||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body
|
||||||
className={`${poppins.variable} antialiased`}
|
className={`${roboto.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||||
>
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
|||||||
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
|
||||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||||
import { Cake, Calendar, ChefHat, Flame, Leaf, Sparkles, Utensils, Wine } from 'lucide-react';
|
import { Cake, Calendar, ChefHat, Flame, Leaf, Sparkles, Utensils, Wine, Clock } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -20,7 +20,7 @@ export default function LandingPage() {
|
|||||||
borderRadius="soft"
|
borderRadius="soft"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="largeSizeMediumTitles"
|
sizing="largeSizeMediumTitles"
|
||||||
background="aurora"
|
background="circleGradient"
|
||||||
cardStyle="gradient-radial"
|
cardStyle="gradient-radial"
|
||||||
primaryButtonStyle="radial-glow"
|
primaryButtonStyle="radial-glow"
|
||||||
secondaryButtonStyle="radial-glow"
|
secondaryButtonStyle="radial-glow"
|
||||||
@@ -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: "glowing-orb" }}
|
||||||
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" },
|
||||||
@@ -141,6 +141,44 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="waittime" data-section="waittime">
|
||||||
|
<FeatureBorderGlow
|
||||||
|
title="How Long Can You Wait?"
|
||||||
|
description="Discover the perfect timing for your dining experience at Culinary Haven."
|
||||||
|
tag="Dining Experience"
|
||||||
|
tagAnimation="slide-up"
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
icon: Clock,
|
||||||
|
title: "30-Minute Express", description: "Perfect for a quick business lunch or casual meal. Our express menu offers carefully selected dishes prepared with efficiency without compromising quality."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Sparkles,
|
||||||
|
title: "90-Minute Tasting", description: "The classic culinary journey. Experience our signature dishes with complementary wine pairings in our most popular dining format."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Wine,
|
||||||
|
title: "3-Hour Gastronomic Journey", description: "Our chef's seven-course tasting menu with curated wine pairings. A complete immersion into culinary artistry and storytelling."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Calendar,
|
||||||
|
title: "Full Evening Experience", description: "For special occasions, we offer extended private dining experiences lasting 4+ hours with bespoke menus and personalized service."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Flame,
|
||||||
|
title: "Chef's Counter", description: "Intimate seating at our chef's counter where you can watch the culinary magic unfold while enjoying an interactive nine-course experience."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Utensils,
|
||||||
|
title: "Private Events", description: "Customize your timing for corporate events, celebrations, and milestone gatherings with our dedicated event planning team."
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
<div id="metrics" data-section="metrics">
|
||||||
<MetricCardTwo
|
<MetricCardTwo
|
||||||
title="Our Achievements"
|
title="Our Achievements"
|
||||||
|
|||||||
Reference in New Issue
Block a user