4 Commits

Author SHA1 Message Date
2dac29dbe4 Update src/app/page.tsx 2026-03-03 16:37:48 +00:00
862a2cc340 Update src/app/page.tsx 2026-03-03 16:27:17 +00:00
75fb4d88d2 Update src/app/page.tsx 2026-03-03 16:19:34 +00:00
86349d2892 Update src/app/page.tsx 2026-03-03 16:06:12 +00:00
2 changed files with 3 additions and 41 deletions

View File

@@ -10,7 +10,7 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBase from '@/components/sections/footer/FooterBase';
import { Cake, Calendar, ChefHat, Flame, Leaf, Sparkles, Utensils, Wine, Clock } from 'lucide-react';
import { Cake, Calendar, ChefHat, Flame, Leaf, Sparkles, Utensils, Wine } from 'lucide-react';
export default function LandingPage() {
return (
@@ -141,44 +141,6 @@ export default function LandingPage() {
/>
</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">
<MetricCardTwo
title="Our Achievements"

View File

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