264 lines
9.3 KiB
TypeScript
264 lines
9.3 KiB
TypeScript
import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
|
|
import ContactCta from '@/components/sections/contact/ContactCta';
|
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
|
import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento';
|
|
import FeaturesTaggedCards from '@/components/sections/features/FeaturesTaggedCards';
|
|
import HeroTiltedCards from '@/components/sections/hero/HeroTiltedCards';
|
|
import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards';
|
|
import { Coffee, Users, Utensils } from "lucide-react";
|
|
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<div id="hero" data-section="hero">
|
|
<SectionErrorBoundary name="hero">
|
|
<HeroTiltedCards
|
|
tag="Luxury Dining"
|
|
title="Welcome to Govinda's"
|
|
description="Delicious Food • Family Dining • Memorable Experience"
|
|
primaryButton={{
|
|
text: "Call Now",
|
|
href: "tel:+919541895655",
|
|
}}
|
|
secondaryButton={{
|
|
text: "WhatsApp Now",
|
|
href: "https://wa.me/919541895655",
|
|
}}
|
|
items={[
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-vegetable-salad-dark-surface_140725-88403.jpg",
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-mushrooms-inside-plate-with-seasonings-purple-tissue-dish-meal-cooking-mushrooms-dinner_140725-117613.jpg",
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/vintage-light-lamp_1203-3090.jpg",
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/abstract-blur-coffee-shop_1339-2395.jpg",
|
|
},
|
|
{
|
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-vegetables-with-different-seasonings-dark-space_140725-79679.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<SectionErrorBoundary name="about">
|
|
<AboutFeaturesSplit
|
|
tag="About Us"
|
|
title="Experience Excellence at Govinda's"
|
|
description="We believe in creating memorable moments through fresh, authentic flavors and a warm family-friendly environment."
|
|
items={[
|
|
{
|
|
icon: Users,
|
|
title: "Family Friendly",
|
|
description: "The perfect place to gather with your loved ones.",
|
|
},
|
|
{
|
|
icon: Utensils,
|
|
title: "Fresh & Tasty",
|
|
description: "Hand-picked ingredients for authentic taste.",
|
|
},
|
|
{
|
|
icon: Coffee,
|
|
title: "Comfortable Dining",
|
|
description: "Luxury interiors for a relaxing meal.",
|
|
},
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/person-cafe-enjoying-book_23-2150064701.jpg?_wi=1"
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="menu" data-section="menu">
|
|
<SectionErrorBoundary name="menu">
|
|
<FeaturesRevealCardsBento
|
|
tag="Our Menu"
|
|
title="A Culinary Journey"
|
|
description="Discover our signature dishes prepared with passion and tradition."
|
|
items={[
|
|
{
|
|
title: "Special Dishes",
|
|
description: "Crafted by our head chef.",
|
|
href: "#",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/delicious-indian-thali-with-naan-rice_23-2152002820.jpg",
|
|
},
|
|
{
|
|
title: "Indian Food",
|
|
description: "Rich in tradition and spice.",
|
|
href: "#",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/variety-treats-halloween-table_23-2148603668.jpg",
|
|
},
|
|
{
|
|
title: "Snacks",
|
|
description: "Quick, crispy, and delicious.",
|
|
href: "#",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-eggplant-rolls-cooked-dish-with-baked-potatoes-seasonings-dark-background-dish-meal-dinner-food-cooking-potato_140725-96413.jpg",
|
|
},
|
|
{
|
|
title: "Beverages",
|
|
description: "Refreshing drinks for everyone.",
|
|
href: "#",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/indian-food-with-sauce-high-angle_23-2148747686.jpg",
|
|
},
|
|
{
|
|
title: "Restaurant Specials",
|
|
description: "Unique recipes you'll love.",
|
|
href: "#",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/wooden-tray-with-bowl-cooked-paste-portions-various-toppings-marble-surface_114579-54665.jpg",
|
|
},
|
|
{
|
|
title: "Family Thali",
|
|
description: "The complete dining experience.",
|
|
href: "#",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/nam-neaung-vietnamese-meat-ball-wraps_1339-2789.jpg",
|
|
},
|
|
{
|
|
title: "Desserts",
|
|
description: "Sweet treats to end with.",
|
|
href: "#",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/photorealistic-lohri-festival-celebration-with-traditional-food_23-2151098287.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="gallery" data-section="gallery">
|
|
<SectionErrorBoundary name="gallery">
|
|
<FeaturesTaggedCards
|
|
tag="Food Gallery"
|
|
title="A Taste of Luxury"
|
|
description="Capturing our delicious moments and premium atmosphere."
|
|
items={[
|
|
{
|
|
tag: "Signature",
|
|
title: "Gourmet Plating",
|
|
description: "Chef-prepared perfection.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-food-concept_23-2148510914.jpg",
|
|
primaryButton: {
|
|
text: "See More",
|
|
href: "#",
|
|
},
|
|
},
|
|
{
|
|
tag: "Ambience",
|
|
title: "Luxury Dining",
|
|
description: "Comfortable family atmosphere.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-male-chef-wearing-face-mask-preparing-delicious-meal_181624-32255.jpg",
|
|
primaryButton: {
|
|
text: "See More",
|
|
href: "#",
|
|
},
|
|
},
|
|
{
|
|
tag: "Dining",
|
|
title: "Memorable Moments",
|
|
description: "Where food meets joy.",
|
|
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-lunch-together-restaurant_23-2150520074.jpg",
|
|
primaryButton: {
|
|
text: "See More",
|
|
href: "#",
|
|
},
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<SectionErrorBoundary name="testimonials">
|
|
<TestimonialRatingCards
|
|
tag="Reviews"
|
|
title="Loved by Our Guests"
|
|
description="4.5 ⭐ rating from 16+ satisfied customers."
|
|
testimonials={[
|
|
{
|
|
name: "Aman S.",
|
|
role: "Foodie",
|
|
quote: "Incredible taste and best service in Udhampur!",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/girl-sitting-table-holding-mobile-phone-indoors_171337-17096.jpg",
|
|
},
|
|
{
|
|
name: "Priya K.",
|
|
role: "Regular",
|
|
quote: "Family favourite! Always fresh and warm food.",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/mature-woman-smiling_1149-601.jpg",
|
|
},
|
|
{
|
|
name: "Rahul V.",
|
|
role: "Visitor",
|
|
quote: "Perfect ambience for weekend family dinners.",
|
|
rating: 4,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-smiling_93675-133804.jpg",
|
|
},
|
|
{
|
|
name: "Sunita M.",
|
|
role: "Local",
|
|
quote: "Excellent hygiene and authentic flavours.",
|
|
rating: 5,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-brunette-woman-wearing-casual-sweater-standing-red-background-pointing-fingers-camera-with-happy-funny-face-good-energy-vibes_839833-6469.jpg",
|
|
},
|
|
{
|
|
name: "Karan T.",
|
|
role: "Client",
|
|
quote: "The snacks are simply the best around here.",
|
|
rating: 4,
|
|
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-point-finger-you_93675-135553.jpg",
|
|
},
|
|
]}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<SectionErrorBoundary name="faq">
|
|
<FaqSplitMedia
|
|
tag="Support"
|
|
title="Need Help or Information?"
|
|
description="Common questions about booking and our services."
|
|
items={[
|
|
{
|
|
question: "How can I book a table?",
|
|
answer: "You can use the booking form below or call us directly.",
|
|
},
|
|
{
|
|
question: "Where are you located?",
|
|
answer: "We are in Shiv Nagar, Udhampur.",
|
|
},
|
|
{
|
|
question: "Is home delivery available?",
|
|
answer: "Yes, we offer local delivery services.",
|
|
},
|
|
]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/happy-african-american-family-relaxing-while-talking-dining-table_637285-12669.jpg"
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<SectionErrorBoundary name="contact">
|
|
<ContactCta
|
|
tag="Contact Us"
|
|
text="Book your table today at +91 95418 95655 or visit us in Shiv Nagar."
|
|
primaryButton={{
|
|
text: "Enquiry / Booking Form",
|
|
href: "#",
|
|
}}
|
|
secondaryButton={{
|
|
text: "Get Directions",
|
|
href: "https://maps.google.com",
|
|
}}
|
|
/>
|
|
</SectionErrorBoundary>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|