Merge version_1 into main #9

Merged
bender merged 5 commits from version_1 into main 2026-03-10 16:16:07 +00:00
5 changed files with 206 additions and 174 deletions

View File

@@ -1,12 +1,11 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import AboutMetric from '@/components/sections/about/AboutMetric';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import AboutMetric from "@/components/sections/about/AboutMetric";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { Utensils, Users, Star, MapPin } from "lucide-react";
import Link from "next/link";
export default function AboutPage() {
const navItems = [
@@ -48,6 +47,25 @@ export default function AboutPage() {
},
];
const metrics = [
{
icon: Utensils,
label: "Years of Experience", value: "8+"
},
{
icon: Users,
label: "Happy Customers", value: "2000+"
},
{
icon: Star,
label: "Customer Rating", value: "4.8★"
},
{
icon: MapPin,
label: "Locations", value: "1"
},
];
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -73,54 +91,16 @@ export default function AboutPage() {
<div id="about" data-section="about">
<AboutMetric
title="Big Daddy's Delight is a popular food spot known for its tasty fast food, refreshing drinks, and comfortable dining atmosphere. We serve fresh, high-quality food with great flavors that keep customers coming back."
metrics={[
{ icon: Utensils, label: "Years of Experience", value: "8+" },
{ icon: Users, label: "Happy Customers", value: "2000+" },
{ icon: Star, label: "Customer Rating", value: "4.8★" },
{ icon: MapPin, label: "Locations", value: "1" },
]}
metrics={metrics}
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSixteen
testimonials={[
{
id: "1", name: "Rajesh Kumar", role: "Food Enthusiast", company: "Regular Customer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-668.jpg", imageAlt: "happy customer portrait smiling"
},
{
id: "2", name: "Priya Sharma", role: "Business Owner", company: "Corporate Client", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-face-gorgeous-latin-american-woman_1262-5766.jpg", imageAlt: "business woman professional portrait"
},
{
id: "3", name: "Amit Patel", role: "Family", company: "Weekend Regular", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/man-smiling-with-arms-crossed_1187-3243.jpg", imageAlt: "young man portrait smiling professional"
},
{
id: "4", name: "Neha Gupta", role: "College Student", company: "Loyal Patron", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-blonde-woman-white_181624-25676.jpg", imageAlt: "young woman smiling professional photo"
},
]}
kpiItems={[
{ value: "2000+", label: "Happy Customers" },
{ value: "98%", label: "Satisfaction Rate" },
{ value: "4.8★", label: "Average Rating" },
]}
animationType="slide-up"
title="What Our Customers Say"
description="Join thousands of satisfied customers who love Big Daddy's Delight"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Big Daddy's Delight"
columns={footerColumns}
logoText="Big Daddy's Delight"
/>
</div>
</ThemeProvider>

View File

@@ -1,52 +1,13 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { MessageSquare } from "lucide-react";
import Link from "next/link";
export default function ContactPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
items: [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
{ label: "Gallery", href: "/gallery" },
],
},
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
{ label: "Order Online", href: "#" },
],
},
{
items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "WhatsApp", href: "https://whatsapp.com" },
{ label: "Phone", href: "tel:+91XXXXXXXXXX" },
],
},
{
items: [
{ label: "Opening Hours", href: "#" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms & Conditions", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="bounce-effect"
@@ -62,7 +23,13 @@ export default function ContactPage() {
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems}
navItems={[
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Big Daddy's Delight"
bottomLeftText="Mumbai, Maharashtra, India"
bottomRightText="+91 XXXXX XXXXX"
@@ -75,10 +42,11 @@ export default function ContactPage() {
tagIcon={MessageSquare}
title="Reserve Your Table"
description="Book a table at Big Daddy's Delight or sign up for updates about our latest offers and specials."
background={{ variant: "downward-rays-static" }}
background={{
variant: "downward-rays-static"
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/young-manager-girl-changing-sign-from-closed-open-sign-door-cafe-looking-outside-waiting-clients-after-lockdown_7861-3174.jpg"
imageAlt="restaurant exterior storefront"
imageSrc="http://img.b2bpic.net/free-photo/engaged-couple-posing-together-city_23-2149488108.jpg"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"
@@ -90,7 +58,42 @@ export default function ContactPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Big Daddy's Delight"
columns={footerColumns}
columns={[
{
items: [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
{ label: "Gallery", href: "/gallery" },
],
},
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
{ label: "Order Online", href: "#" },
],
},
{
items: [
{
label: "Instagram", href: "https://instagram.com"
},
{
label: "WhatsApp", href: "https://whatsapp.com"
},
{
label: "Phone", href: "tel:+91XXXXXXXXXX"
},
],
},
{
items: [
{ label: "Opening Hours", href: "#" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms & Conditions", href: "#" },
],
},
]}
/>
</div>
</ThemeProvider>

View File

@@ -1,10 +1,10 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import Link from "next/link";
export default function GalleryPage() {
const navItems = [
@@ -48,22 +48,22 @@ export default function GalleryPage() {
const galleryProducts = [
{
id: "gallery-burger", name: "Juicy Burgers", price: "Chef's Special", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-burgers-plate_23-2149897390.jpg", imageAlt: "assorted burgers food photography"
id: "gallery-burgers", name: "Juicy Burgers", price: "Chef's Special", imageSrc: "http://img.b2bpic.net/free-photo/high-protein-meal-burgers-close-up-detail_23-2149098869.jpg", imageAlt: "assorted burgers food photography"
},
{
id: "gallery-biryani", name: "Fragrant Biryani", price: "Main Course", imageSrc: "http://img.b2bpic.net/free-photo/pilaf-with-sabzi-with-herbs_140725-6298.jpg", imageAlt: "biryani rice dish elegant plating"
id: "gallery-biryani", name: "Fragrant Biryani", price: "Main Course", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-rice-with-seasonings-dark-surface-meal-dark-dish-east_140725-82272.jpg", imageAlt: "biryani rice dish elegant plating"
},
{
id: "gallery-drinks", name: "Refreshing Drinks", price: "Beverages", imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-drinks_23-2149132218.jpg", imageAlt: "beverage selection drinks display"
id: "gallery-drinks", name: "Refreshing Drinks", price: "Beverages", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-with-delicious-kombucha-outdoors_23-2150553725.jpg", imageAlt: "beverage selection drinks display"
},
{
id: "gallery-interior", name: "Cozy Interior", price: "Dining Ambiance", imageSrc: "http://img.b2bpic.net/free-photo/boy-having-coffee-restaurant_23-2148172665.jpg", imageAlt: "modern restaurant interior design"
id: "gallery-interior", name: "Cozy Interior", price: "Dining Ambiance", imageSrc: "http://img.b2bpic.net/free-photo/luxury-modern-apartment-with-elegant-interior-design-generated-by-ai_188544-33483.jpg", imageAlt: "modern restaurant interior design"
},
{
id: "gallery-seating", name: "Comfortable Seating", price: "Experience", imageSrc: "http://img.b2bpic.net/free-photo/happy-family-four-adults-baby-celebrating-new-year-together-kitchen-round-table_132075-6536.jpg", imageAlt: "restaurant seating comfortable chairs"
id: "gallery-seating", name: "Comfortable Seating", price: "Experience", imageSrc: "http://img.b2bpic.net/free-photo/beautifully-decorated-interiors-beach-restaurant-day_181624-59566.jpg", imageAlt: "restaurant seating comfortable chairs"
},
{
id: "gallery-platter", name: "Special Platters", price: "Family Pack", imageSrc: "http://img.b2bpic.net/free-photo/plates-with-fresh-rolls_23-2148482435.jpg", imageAlt: "family platter food sharing board"
id: "gallery-platter", name: "Special Platters", price: "Family Pack", imageSrc: "http://img.b2bpic.net/free-photo/food-catering-canape-antipasto_624325-1409.jpg", imageAlt: "family platter food sharing board"
},
];
@@ -105,8 +105,8 @@ export default function GalleryPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Big Daddy's Delight"
columns={footerColumns}
logoText="Big Daddy's Delight"
/>
</div>
</ThemeProvider>

View File

@@ -1,12 +1,12 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { MessageSquare } from "lucide-react";
import Link from "next/link";
export default function MenuPage() {
const navItems = [
@@ -71,31 +71,31 @@ export default function MenuPage() {
/>
</div>
{/* Complete Menu Section */}
{/* Full Menu Section */}
<div id="menu" data-section="menu">
<ProductCardOne
title="Complete Menu"
description="Browse our full selection of delicious fast food, main courses, and refreshing beverages"
tag="All Items"
description="Explore our full range of delicious fast food, main courses, sides, and refreshing beverages. Each item is carefully prepared with fresh, high-quality ingredients."
tag="Food Menu"
tagAnimation="slide-up"
products={[
{
id: "burger", name: "Burger", price: "₹120", imageSrc: "http://img.b2bpic.net/free-photo/juicy-cheeseburger-with-salad-wooden-board_140725-7362.jpg", imageAlt: "burger menu item professional photo"
id: "burger", name: "Burger", price: "₹120", imageSrc: "http://img.b2bpic.net/free-photo/ready-be-served-burger-with-french-fries_23-2148290668.jpg"
},
{
id: "cheese-burger", name: "Cheese Burger", price: "₹150", imageSrc: "http://img.b2bpic.net/free-photo/burger-with-melted-cheese-copy-space_23-2149342863.jpg", imageAlt: "cheese burger melted cheese juicy patty"
id: "cheese-burger", name: "Cheese Burger", price: "₹150", imageSrc: "http://img.b2bpic.net/free-photo/burger-menu-with-variety-marinated-turshu_114579-2049.jpg"
},
{
id: "veg-sandwich", name: "Veg Sandwich", price: "₹100", imageSrc: "http://img.b2bpic.net/free-photo/plate-with-delicious-sandwich_23-2148454751.jpg", imageAlt: "vegetable sandwich fresh vegetables"
id: "veg-sandwich", name: "Veg Sandwich", price: "₹100", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-cucumber-desk_23-2148590176.jpg"
},
{
id: "chicken-sandwich", name: "Chicken Sandwich", price: "₹140", imageSrc: "http://img.b2bpic.net/free-photo/beef-burger-with-french-fries_1339-1406.jpg", imageAlt: "chicken sandwich grilled chicken bread"
id: "chicken-sandwich", name: "Chicken Sandwich", price: "₹140", imageSrc: "http://img.b2bpic.net/free-photo/grilled-bbq-pork-chop-meat-steak_74190-6146.jpg"
},
{
id: "french-fries", name: "French Fries", price: "₹80", imageSrc: "http://img.b2bpic.net/free-photo/ceramic-bowl-crispy-potato-sticks-stone_114579-87947.jpg", imageAlt: "crispy french fries golden brown"
id: "french-fries", name: "French Fries", price: "₹80", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-french-fries-with-sauces-black_140725-104458.jpg"
},
{
id: "biryani-chicken", name: "Chicken Biryani", price: "₹180", imageSrc: "http://img.b2bpic.net/free-photo/rice-dishes-spices-composition_23-2147894730.jpg", imageAlt: "chicken biryani Indian rice meal"
id: "biryani-chicken", name: "Chicken Biryani", price: "₹180", imageSrc: "http://img.b2bpic.net/free-psd/delicious-lamb-biryani-with-raita-fresh-mint_84443-64726.jpg"
},
]}
gridVariant="three-columns-all-equal-width"
@@ -106,30 +106,21 @@ export default function MenuPage() {
</div>
{/* Gallery Showcase Section */}
<div id="gallery" data-section="gallery">
<div id="gallery-menu" data-section="gallery-menu">
<ProductCardOne
title="Restaurant Gallery"
description="Discover the ambiance and delicious offerings at Big Daddy's Delight"
tag="Visual Gallery"
title="Our Specialty Items"
description="Chef's recommended dishes that showcase the best of Big Daddy's Delight"
tag="Chef's Selection"
tagAnimation="slide-up"
products={[
{
id: "gallery-burger", name: "Juicy Burgers", price: "Chef's Special", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-burgers-plate_23-2149897390.jpg", imageAlt: "assorted burgers food photography"
id: "specialty-burger", name: "Juicy Burgers", price: "Chef's Special", imageSrc: "http://img.b2bpic.net/free-photo/high-protein-meal-burgers-close-up-detail_23-2149098869.jpg"
},
{
id: "gallery-biryani", name: "Fragrant Biryani", price: "Main Course", imageSrc: "http://img.b2bpic.net/free-photo/pilaf-with-sabzi-with-herbs_140725-6298.jpg", imageAlt: "biryani rice dish elegant plating"
id: "specialty-biryani", name: "Fragrant Biryani", price: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-rice-with-seasonings-dark-surface-meal-dark-dish-east_140725-82272.jpg"
},
{
id: "gallery-drinks", name: "Refreshing Drinks", price: "Beverages", imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-drinks_23-2149132218.jpg", imageAlt: "beverage selection drinks display"
},
{
id: "gallery-interior", name: "Cozy Interior", price: "Dining Ambiance", imageSrc: "http://img.b2bpic.net/free-photo/boy-having-coffee-restaurant_23-2148172665.jpg", imageAlt: "modern restaurant interior design"
},
{
id: "gallery-seating", name: "Comfortable Seating", price: "Experience", imageSrc: "http://img.b2bpic.net/free-photo/happy-family-four-adults-baby-celebrating-new-year-together-kitchen-round-table_132075-6536.jpg", imageAlt: "restaurant seating comfortable chairs"
},
{
id: "gallery-platter", name: "Special Platters", price: "Family Pack", imageSrc: "http://img.b2bpic.net/free-photo/plates-with-fresh-rolls_23-2148482435.jpg", imageAlt: "family platter food sharing board"
id: "specialty-platter", name: "Special Platters", price: "Family Pack", imageSrc: "http://img.b2bpic.net/free-photo/food-catering-canape-antipasto_624325-1409.jpg"
},
]}
gridVariant="three-columns-all-equal-width"
@@ -139,17 +130,18 @@ export default function MenuPage() {
/>
</div>
{/* Contact Section */}
{/* Contact/Order Section */}
<div id="contact" data-section="contact">
<ContactSplit
tag="Get In Touch"
tag="Place Your Order"
tagIcon={MessageSquare}
title="Reserve Your Table"
description="Book a table at Big Daddy's Delight or sign up for updates about our latest offers and specials."
background={{ variant: "downward-rays-static" }}
title="Order Your Favorite Meal"
description="Get your favorite dishes delivered to your doorstep or visit us for an amazing dining experience. Subscribe to our newsletter for exclusive menu updates and special offers."
background={{
variant: "downward-rays-static"
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/young-manager-girl-changing-sign-from-closed-open-sign-door-cafe-looking-outside-waiting-clients-after-lockdown_7861-3174.jpg"
imageAlt="restaurant exterior storefront"
imageSrc="http://img.b2bpic.net/free-photo/engaged-couple-posing-together-city_23-2149488108.jpg"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"

View File

@@ -1,15 +1,15 @@
"use client";
import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroCentered from '@/components/sections/hero/HeroCentered';
import AboutMetric from '@/components/sections/about/AboutMetric';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import HeroCentered from "@/components/sections/hero/HeroCentered";
import AboutMetric from "@/components/sections/about/AboutMetric";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import { Utensils, Users, Star, MapPin, MessageSquare } from "lucide-react";
import Link from "next/link";
export default function HomePage() {
const navItems = [
@@ -82,33 +82,49 @@ export default function HomePage() {
description="Delicious Food, Great Taste, Perfect Place to Eat. Experience authentic flavors and premium dining atmosphere."
avatars={[
{
src: "http://img.b2bpic.net/free-photo/tasty-sandwich-tomatoes-with-stem-knife-dark-mix-color-surface-with-free-space_179666-42279.jpg", alt: "Delicious burger"
src: "http://img.b2bpic.net/free-photo/front-view-meat-hamburger-with-fresh-tomatoes-dark-background_179666-19388.jpg", alt: "Delicious burger"
},
{
src: "http://img.b2bpic.net/free-photo/high-angle-pakistan-dish-composition_23-2148821519.jpg", alt: "Authentic biryani"
src: "http://img.b2bpic.net/free-photo/high-angle-pakistan-meal-composition_23-2148821517.jpg", alt: "Authentic biryani"
},
{
src: "http://img.b2bpic.net/free-photo/gin-fizz-cocktail-with-lime-wooden-table_123827-36114.jpg", alt: "Refreshing drinks"
src: "http://img.b2bpic.net/free-photo/green-cocktail-with-flowers-table_140725-431.jpg", alt: "Refreshing drinks"
},
]}
avatarText="Trusted by 2000+ Happy Customers"
buttons={[
{ text: "View Menu", href: "/menu" },
{ text: "Order Now", href: "#contact" },
{
text: "View Menu", href: "/menu"
},
{
text: "Order Now", href: "#contact"
},
]}
buttonAnimation="slide-up"
/>
</div>
{/* About Metrics Section */}
{/* About Section */}
<div id="about" data-section="about">
<AboutMetric
title="Big Daddy's Delight is a popular food spot known for its tasty fast food, refreshing drinks, and comfortable dining atmosphere. We serve fresh, high-quality food with great flavors that keep customers coming back."
metrics={[
{ icon: Utensils, label: "Years of Experience", value: "8+" },
{ icon: Users, label: "Happy Customers", value: "2000+" },
{ icon: Star, label: "Customer Rating", value: "4.8★" },
{ icon: MapPin, label: "Locations", value: "1" },
{
icon: Utensils,
label: "Years of Experience", value: "8+"
},
{
icon: Users,
label: "Happy Customers", value: "2000+"
},
{
icon: Star,
label: "Customer Rating", value: "4.8★"
},
{
icon: MapPin,
label: "Locations", value: "1"
},
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
@@ -124,22 +140,22 @@ export default function HomePage() {
tagAnimation="slide-up"
products={[
{
id: "burger", name: "Burger", price: "₹120", imageSrc: "http://img.b2bpic.net/free-photo/juicy-cheeseburger-with-salad-wooden-board_140725-7362.jpg", imageAlt: "burger menu item professional photo"
id: "burger", name: "Burger", price: "₹120", imageSrc: "http://img.b2bpic.net/free-photo/ready-be-served-burger-with-french-fries_23-2148290668.jpg"
},
{
id: "cheese-burger", name: "Cheese Burger", price: "₹150", imageSrc: "http://img.b2bpic.net/free-photo/burger-with-melted-cheese-copy-space_23-2149342863.jpg", imageAlt: "cheese burger melted cheese juicy patty"
id: "cheese-burger", name: "Cheese Burger", price: "₹150", imageSrc: "http://img.b2bpic.net/free-photo/burger-menu-with-variety-marinated-turshu_114579-2049.jpg"
},
{
id: "veg-sandwich", name: "Veg Sandwich", price: "₹100", imageSrc: "http://img.b2bpic.net/free-photo/plate-with-delicious-sandwich_23-2148454751.jpg", imageAlt: "vegetable sandwich fresh vegetables"
id: "veg-sandwich", name: "Veg Sandwich", price: "₹100", imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-cucumber-desk_23-2148590176.jpg"
},
{
id: "chicken-sandwich", name: "Chicken Sandwich", price: "₹140", imageSrc: "http://img.b2bpic.net/free-photo/beef-burger-with-french-fries_1339-1406.jpg", imageAlt: "chicken sandwich grilled chicken bread"
id: "chicken-sandwich", name: "Chicken Sandwich", price: "₹140", imageSrc: "http://img.b2bpic.net/free-photo/grilled-bbq-pork-chop-meat-steak_74190-6146.jpg"
},
{
id: "french-fries", name: "French Fries", price: "₹80", imageSrc: "http://img.b2bpic.net/free-photo/ceramic-bowl-crispy-potato-sticks-stone_114579-87947.jpg", imageAlt: "crispy french fries golden brown"
id: "french-fries", name: "French Fries", price: "₹80", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-french-fries-with-sauces-black_140725-104458.jpg"
},
{
id: "biryani-chicken", name: "Chicken Biryani", price: "₹180", imageSrc: "http://img.b2bpic.net/free-photo/rice-dishes-spices-composition_23-2147894730.jpg", imageAlt: "chicken biryani Indian rice meal"
id: "biryani-chicken", name: "Chicken Biryani", price: "₹180", imageSrc: "http://img.b2bpic.net/free-psd/delicious-lamb-biryani-with-raita-fresh-mint_84443-64726.jpg"
},
]}
gridVariant="three-columns-all-equal-width"
@@ -157,25 +173,31 @@ export default function HomePage() {
testimonials={[
{
id: "1", name: "Rajesh Kumar", role: "Food Enthusiast", company: "Regular Customer", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-668.jpg", imageAlt: "happy customer portrait smiling"
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg"
},
{
id: "2", name: "Priya Sharma", role: "Business Owner", company: "Corporate Client", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-face-gorgeous-latin-american-woman_1262-5766.jpg", imageAlt: "business woman professional portrait"
imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-with-curly-hair_23-2148728586.jpg"
},
{
id: "3", name: "Amit Patel", role: "Family", company: "Weekend Regular", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/man-smiling-with-arms-crossed_1187-3243.jpg", imageAlt: "young man portrait smiling professional"
imageSrc: "http://img.b2bpic.net/free-photo/closeup-confident-male-employee-white-collar-shirt-smiling-camera-standing-selfassured-agai_1258-112592.jpg"
},
{
id: "4", name: "Neha Gupta", role: "College Student", company: "Loyal Patron", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-blonde-woman-white_181624-25676.jpg", imageAlt: "young woman smiling professional photo"
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-girl-white-background_176420-5373.jpg"
},
]}
kpiItems={[
{ value: "2000+", label: "Happy Customers" },
{ value: "98%", label: "Satisfaction Rate" },
{ value: "4.8★", label: "Average Rating" },
{
value: "2000+", label: "Happy Customers"
},
{
value: "98%", label: "Satisfaction Rate"
},
{
value: "4.8★", label: "Average Rating"
},
]}
animationType="slide-up"
textboxLayout="default"
@@ -183,6 +205,40 @@ export default function HomePage() {
/>
</div>
{/* Gallery Section */}
<div id="gallery" data-section="gallery">
<ProductCardOne
title="Restaurant Gallery"
description="Discover the ambiance and delicious offerings at Big Daddy's Delight"
tag="Visual Gallery"
tagAnimation="slide-up"
products={[
{
id: "gallery-burger", name: "Juicy Burgers", price: "Chef's Special", imageSrc: "http://img.b2bpic.net/free-photo/high-protein-meal-burgers-close-up-detail_23-2149098869.jpg"
},
{
id: "gallery-biryani", name: "Fragrant Biryani", price: "Main Course", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-rice-with-seasonings-dark-surface-meal-dark-dish-east_140725-82272.jpg"
},
{
id: "gallery-drinks", name: "Refreshing Drinks", price: "Beverages", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-with-delicious-kombucha-outdoors_23-2150553725.jpg"
},
{
id: "gallery-interior", name: "Cozy Interior", price: "Dining Ambiance", imageSrc: "http://img.b2bpic.net/free-photo/luxury-modern-apartment-with-elegant-interior-design-generated-by-ai_188544-33483.jpg"
},
{
id: "gallery-seating", name: "Comfortable Seating", price: "Experience", imageSrc: "http://img.b2bpic.net/free-photo/beautifully-decorated-interiors-beach-restaurant-day_181624-59566.jpg"
},
{
id: "gallery-platter", name: "Special Platters", price: "Family Pack", imageSrc: "http://img.b2bpic.net/free-photo/food-catering-canape-antipasto_624325-1409.jpg"
},
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
{/* Contact Section */}
<div id="contact" data-section="contact">
<ContactSplit
@@ -190,10 +246,11 @@ export default function HomePage() {
tagIcon={MessageSquare}
title="Reserve Your Table"
description="Book a table at Big Daddy's Delight or sign up for updates about our latest offers and specials."
background={{ variant: "downward-rays-static" }}
background={{
variant: "downward-rays-static"
}}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/young-manager-girl-changing-sign-from-closed-open-sign-door-cafe-looking-outside-waiting-clients-after-lockdown_7861-3174.jpg"
imageAlt="restaurant exterior storefront"
imageSrc="http://img.b2bpic.net/free-photo/engaged-couple-posing-together-city_23-2149488108.jpg"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"