Merge version_1 into main #4
@@ -1,11 +1,12 @@
|
||||
"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 { Utensils, Users, Star, MapPin } from "lucide-react";
|
||||
import Link from "next/link";
|
||||
|
||||
export default function AboutPage() {
|
||||
const navItems = [
|
||||
@@ -13,7 +14,7 @@ export default function AboutPage() {
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
@@ -21,53 +22,30 @@ export default function AboutPage() {
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Menu", href: "/menu" },
|
||||
{ label: "Gallery", href: "/gallery" }
|
||||
]
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Order Online", href: "#" }
|
||||
]
|
||||
{ label: "Order Online", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "WhatsApp", href: "https://whatsapp.com" },
|
||||
{ label: "Phone", href: "tel:+91XXXXXXXXXX" }
|
||||
]
|
||||
{ label: "Phone", href: "tel:+91XXXXXXXXXX" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Opening Hours", href: "#" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms & Conditions", href: "#" }
|
||||
]
|
||||
}
|
||||
];
|
||||
|
||||
const metrics = [
|
||||
{
|
||||
icon: Utensils,
|
||||
label: "Years of Experience",
|
||||
value: "8+"
|
||||
{ label: "Terms & Conditions", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
label: "Happy Customers",
|
||||
value: "2000+"
|
||||
},
|
||||
{
|
||||
icon: Star,
|
||||
label: "Customer Rating",
|
||||
value: "4.8★"
|
||||
},
|
||||
{
|
||||
icon: MapPin,
|
||||
label: "Locations",
|
||||
value: "1"
|
||||
}
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -95,16 +73,54 @@ 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={metrics}
|
||||
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" },
|
||||
]}
|
||||
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
|
||||
columns={footerColumns}
|
||||
logoText="Big Daddy's Delight"
|
||||
columns={footerColumns}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -1,13 +1,52 @@
|
||||
"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"
|
||||
@@ -23,13 +62,7 @@ export default function ContactPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
navItems={navItems}
|
||||
brandName="Big Daddy's Delight"
|
||||
bottomLeftText="Mumbai, Maharashtra, India"
|
||||
bottomRightText="+91 XXXXX XXXXX"
|
||||
@@ -42,11 +75,10 @@ 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/engaged-couple-posing-together-city_23-2149488108.jpg?_wi=3"
|
||||
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"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
@@ -58,45 +90,7 @@ export default function ContactPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="Big Daddy's Delight"
|
||||
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: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={footerColumns}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -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 Link from "next/link";
|
||||
|
||||
export default function GalleryPage() {
|
||||
const navItems = [
|
||||
@@ -12,7 +12,7 @@ export default function GalleryPage() {
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
@@ -20,75 +20,51 @@ export default function GalleryPage() {
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Menu", href: "/menu" },
|
||||
{ label: "Gallery", href: "/gallery" }
|
||||
]
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Order Online", href: "#" }
|
||||
]
|
||||
{ label: "Order Online", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "WhatsApp", href: "https://whatsapp.com" },
|
||||
{ label: "Phone", href: "tel:+91XXXXXXXXXX" }
|
||||
]
|
||||
{ label: "Phone", href: "tel:+91XXXXXXXXXX" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Opening Hours", href: "#" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms & Conditions", href: "#" }
|
||||
]
|
||||
}
|
||||
{ label: "Terms & Conditions", href: "#" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
const galleryProducts = [
|
||||
{
|
||||
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?_wi=3",
|
||||
imageAlt: "assorted burgers food photography"
|
||||
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-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?_wi=3",
|
||||
imageAlt: "biryani rice dish elegant plating"
|
||||
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-drinks",
|
||||
name: "Refreshing Drinks",
|
||||
price: "Beverages",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-with-delicious-kombucha-outdoors_23-2150553725.jpg?_wi=2",
|
||||
imageAlt: "beverage selection drinks display"
|
||||
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/luxury-modern-apartment-with-elegant-interior-design-generated-by-ai_188544-33483.jpg?_wi=2",
|
||||
imageAlt: "modern restaurant interior design"
|
||||
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/beautifully-decorated-interiors-beach-restaurant-day_181624-59566.jpg?_wi=2",
|
||||
imageAlt: "restaurant seating comfortable chairs"
|
||||
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/food-catering-canape-antipasto_624325-1409.jpg?_wi=3",
|
||||
imageAlt: "family platter food sharing board"
|
||||
}
|
||||
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"
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -129,8 +105,8 @@ export default function GalleryPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={footerColumns}
|
||||
logoText="Big Daddy's Delight"
|
||||
columns={footerColumns}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
|
||||
@@ -1,19 +1,20 @@
|
||||
"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";
|
||||
|
||||
export default function MenuPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
@@ -21,13 +22,13 @@ export default function MenuPage() {
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Menu", href: "/menu" },
|
||||
{ label: "Gallery", href: "gallery" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Contact", href: "contact" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Order Online", href: "#" },
|
||||
],
|
||||
},
|
||||
@@ -70,49 +71,31 @@ export default function MenuPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Full Menu Section */}
|
||||
{/* Complete Menu Section */}
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardOne
|
||||
title="Complete Menu"
|
||||
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"
|
||||
description="Browse our full selection of delicious fast food, main courses, and refreshing beverages"
|
||||
tag="All Items"
|
||||
tagAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "burger",
|
||||
name: "Burger",
|
||||
price: "₹120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ready-be-served-burger-with-french-fries_23-2148290668.jpg?_wi=2",
|
||||
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: "cheese-burger",
|
||||
name: "Cheese Burger",
|
||||
price: "₹150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/burger-menu-with-variety-marinated-turshu_114579-2049.jpg?_wi=2",
|
||||
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: "veg-sandwich",
|
||||
name: "Veg Sandwich",
|
||||
price: "₹100",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-cucumber-desk_23-2148590176.jpg?_wi=2",
|
||||
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: "chicken-sandwich",
|
||||
name: "Chicken Sandwich",
|
||||
price: "₹140",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-bbq-pork-chop-meat-steak_74190-6146.jpg?_wi=2",
|
||||
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: "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?_wi=2",
|
||||
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: "biryani-chicken",
|
||||
name: "Chicken Biryani",
|
||||
price: "₹180",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/delicious-lamb-biryani-with-raita-fresh-mint_84443-64726.jpg?_wi=2",
|
||||
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"
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
@@ -123,30 +106,30 @@ export default function MenuPage() {
|
||||
</div>
|
||||
|
||||
{/* Gallery Showcase Section */}
|
||||
<div id="gallery-menu" data-section="gallery-menu">
|
||||
<div id="gallery" data-section="gallery">
|
||||
<ProductCardOne
|
||||
title="Our Specialty Items"
|
||||
description="Chef's recommended dishes that showcase the best of Big Daddy's Delight"
|
||||
tag="Chef's Selection"
|
||||
title="Restaurant Gallery"
|
||||
description="Discover the ambiance and delicious offerings at Big Daddy's Delight"
|
||||
tag="Visual Gallery"
|
||||
tagAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
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?_wi=2",
|
||||
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-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?_wi=2",
|
||||
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-platter",
|
||||
name: "Special Platters",
|
||||
price: "Family Pack",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-catering-canape-antipasto_624325-1409.jpg?_wi=2",
|
||||
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"
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
@@ -156,18 +139,17 @@ export default function MenuPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Contact/Order Section */}
|
||||
{/* Contact Section */}
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Place Your Order"
|
||||
tag="Get In Touch"
|
||||
tagIcon={MessageSquare}
|
||||
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",
|
||||
}}
|
||||
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" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/engaged-couple-posing-together-city_23-2149488108.jpg?_wi=2"
|
||||
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"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
|
||||
208
src/app/page.tsx
208
src/app/page.tsx
@@ -1,22 +1,23 @@
|
||||
"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";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
@@ -24,13 +25,13 @@ export default function HomePage() {
|
||||
items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Menu", href: "/menu" },
|
||||
{ label: "Gallery", href: "gallery" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "About Us", href: "about" },
|
||||
{ label: "Contact", href: "contact" },
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Order Online", href: "#" },
|
||||
],
|
||||
},
|
||||
@@ -81,58 +82,33 @@ 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/front-view-meat-hamburger-with-fresh-tomatoes-dark-background_179666-19388.jpg",
|
||||
alt: "Delicious burger",
|
||||
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/high-angle-pakistan-meal-composition_23-2148821517.jpg",
|
||||
alt: "Authentic biryani",
|
||||
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/green-cocktail-with-flowers-table_140725-431.jpg",
|
||||
alt: "Refreshing drinks",
|
||||
src: "http://img.b2bpic.net/free-photo/gin-fizz-cocktail-with-lime-wooden-table_123827-36114.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 Section */}
|
||||
{/* About Metrics 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}
|
||||
@@ -148,40 +124,22 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "burger",
|
||||
name: "Burger",
|
||||
price: "₹120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ready-be-served-burger-with-french-fries_23-2148290668.jpg?_wi=1",
|
||||
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: "cheese-burger",
|
||||
name: "Cheese Burger",
|
||||
price: "₹150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/burger-menu-with-variety-marinated-turshu_114579-2049.jpg?_wi=1",
|
||||
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: "veg-sandwich",
|
||||
name: "Veg Sandwich",
|
||||
price: "₹100",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-cucumber-desk_23-2148590176.jpg?_wi=1",
|
||||
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: "chicken-sandwich",
|
||||
name: "Chicken Sandwich",
|
||||
price: "₹140",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-bbq-pork-chop-meat-steak_74190-6146.jpg?_wi=1",
|
||||
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: "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?_wi=1",
|
||||
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: "biryani-chicken",
|
||||
name: "Chicken Biryani",
|
||||
price: "₹180",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/delicious-lamb-biryani-with-raita-fresh-mint_84443-64726.jpg?_wi=1",
|
||||
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"
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
@@ -198,51 +156,26 @@ export default function HomePage() {
|
||||
description="Join thousands of satisfied customers who love Big Daddy's Delight"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Rajesh Kumar",
|
||||
role: "Food Enthusiast",
|
||||
company: "Regular Customer",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-smiling-beautiful-adult-businesswoman_1262-1760.jpg",
|
||||
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/portrait-woman-with-curly-hair_23-2148728586.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"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Amit Patel",
|
||||
role: "Family",
|
||||
company: "Weekend Regular",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-confident-male-employee-white-collar-shirt-smiling-camera-standing-selfassured-agai_1258-112592.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"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Neha Gupta",
|
||||
role: "College Student",
|
||||
company: "Loyal Patron",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-girl-white-background_176420-5373.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"
|
||||
},
|
||||
]}
|
||||
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"
|
||||
@@ -250,58 +183,6 @@ 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?_wi=1",
|
||||
},
|
||||
{
|
||||
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?_wi=1",
|
||||
},
|
||||
{
|
||||
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?_wi=1",
|
||||
},
|
||||
{
|
||||
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?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "gallery-seating",
|
||||
name: "Comfortable Seating",
|
||||
price: "Experience",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautifully-decorated-interiors-beach-restaurant-day_181624-59566.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "gallery-platter",
|
||||
name: "Special Platters",
|
||||
price: "Family Pack",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/food-catering-canape-antipasto_624325-1409.jpg?_wi=1",
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Contact Section */}
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
@@ -309,11 +190,10 @@ 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/engaged-couple-posing-together-city_23-2149488108.jpg?_wi=1"
|
||||
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"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="Enter your email"
|
||||
|
||||
Reference in New Issue
Block a user