Merge version_1 into main #1
548
src/app/page.tsx
548
src/app/page.tsx
@@ -29,407 +29,171 @@ export default function LandingPage() {
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Experience",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Testimonials",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Abu Haidy"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Experience", id: "about" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Abu Haidy"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Authentic Flavors at Abu Haidy"
|
||||
description="Experience the true essence of traditional dining. Abu Haidy offers carefully crafted dishes in an inviting, authentic atmosphere perfect for family and friends."
|
||||
kpis={[
|
||||
{
|
||||
value: "15+",
|
||||
label: "Years Experience",
|
||||
},
|
||||
{
|
||||
value: "100%",
|
||||
label: "Fresh Ingredients",
|
||||
},
|
||||
{
|
||||
value: "5000+",
|
||||
label: "Happy Guests",
|
||||
},
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "See Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/row-decorative-light-bulbs-hanging-cafe_181624-58119.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-eating-pasta-italian-restaurant_1303-24360.jpg",
|
||||
alt: "Happy diner 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/plate-event-dinner-party-glass_1203-5093.jpg",
|
||||
alt: "Happy diner 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/restaurant-room-with-guns-wall_140725-6307.jpg",
|
||||
alt: "Happy diner 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/restaurant-with-red-carpet-floor-tables-chairs_140725-8024.jpg",
|
||||
alt: "Happy diner 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/cheese-khachapuri-with-sauce-table_140725-2035.jpg",
|
||||
alt: "Happy diner 5",
|
||||
},
|
||||
]}
|
||||
avatarText="Join 5000+ happy guests"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Authentic Cuisine",
|
||||
icon: Flame,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Family Recipe",
|
||||
icon: Heart,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Fresh Sourcing",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Open Daily",
|
||||
icon: Clock,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Prime Location",
|
||||
icon: MapPin,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Authentic Flavors at Abu Haidy"
|
||||
description="Experience the true essence of traditional dining. Abu Haidy offers carefully crafted dishes in an inviting, authentic atmosphere perfect for family and friends."
|
||||
kpis={[
|
||||
{ value: "15+", label: "Years Experience" },
|
||||
{ value: "100%", label: "Fresh Ingredients" },
|
||||
{ value: "5000+", label: "Happy Guests" },
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[{ text: "See Menu", href: "#menu" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/row-decorative-light-bulbs-hanging-cafe_181624-58119.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/woman-eating-pasta-italian-restaurant_1303-24360.jpg", alt: "Happy diner 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/plate-event-dinner-party-glass_1203-5093.jpg", alt: "Happy diner 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/restaurant-room-with-guns-wall_140725-6307.jpg", alt: "Happy diner 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/restaurant-with-red-carpet-floor-tables-chairs_140725-8024.jpg", alt: "Happy diner 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/cheese-khachapuri-with-sauce-table_140725-2035.jpg", alt: "Happy diner 5" },
|
||||
]}
|
||||
avatarText="Join 5000+ happy guests"
|
||||
marqueeItems={[
|
||||
{ type: "text-icon", text: "Authentic Cuisine", icon: Flame },
|
||||
{ type: "text-icon", text: "Family Recipe", icon: Heart },
|
||||
{ type: "text-icon", text: "Fresh Sourcing", icon: Leaf },
|
||||
{ type: "text-icon", text: "Open Daily", icon: Clock },
|
||||
{ type: "text-icon", text: "Prime Location", icon: MapPin },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="A Tradition of Excellence"
|
||||
metrics={[
|
||||
{
|
||||
icon: Flame,
|
||||
label: "Authentic Cooking",
|
||||
value: "Traditional",
|
||||
},
|
||||
{
|
||||
icon: Leaf,
|
||||
label: "Fresh Sourcing",
|
||||
value: "Daily",
|
||||
},
|
||||
{
|
||||
icon: Clock,
|
||||
label: "Service Hours",
|
||||
value: "12PM-12AM",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<AboutMetric
|
||||
useInvertedBackground={false}
|
||||
title="A Tradition of Excellence"
|
||||
metrics={[
|
||||
{ icon: Flame, label: "Authentic Cooking", value: "Traditional" },
|
||||
{ icon: Leaf, label: "Fresh Sourcing", value: "Daily" },
|
||||
{ icon: Clock, label: "Service Hours", value: "12PM-12AM" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSix
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Traditional Recipes",
|
||||
description: "Time-tested recipes handed down through generations.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/served-tea-table-with-orange-shisha_141793-4743.jpg",
|
||||
imageAlt: "Traditional food",
|
||||
},
|
||||
{
|
||||
title: "Warm Atmosphere",
|
||||
description: "Designed for comfort and intimate gatherings.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-table_23-2149882892.jpg",
|
||||
imageAlt: "Restaurant ambiance",
|
||||
},
|
||||
{
|
||||
title: "Quality Service",
|
||||
description: "Our team ensures every guest feels at home.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lamps-arab-restaurant_23-2147794380.jpg",
|
||||
imageAlt: "Service",
|
||||
},
|
||||
]}
|
||||
title="Why Guests Choose Us"
|
||||
description="From our heritage-inspired recipes to our commitment to guest comfort, we provide more than just a meal—we provide a lasting memory."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSix
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ title: "Traditional Recipes", description: "Time-tested recipes handed down through generations.", imageSrc: "http://img.b2bpic.net/free-photo/served-tea-table-with-orange-shisha_141793-4743.jpg", imageAlt: "Traditional food" },
|
||||
{ title: "Warm Atmosphere", description: "Designed for comfort and intimate gatherings.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-food-table_23-2149882892.jpg", imageAlt: "Restaurant ambiance" },
|
||||
{ title: "Quality Service", description: "Our team ensures every guest feels at home.", imageSrc: "http://img.b2bpic.net/free-photo/lamps-arab-restaurant_23-2147794380.jpg", imageAlt: "Service" },
|
||||
]}
|
||||
title="Why Guests Choose Us"
|
||||
description="From our heritage-inspired recipes to our commitment to guest comfort, we provide more than just a meal—we provide a lasting memory."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Grilled Meat Platter",
|
||||
price: "$15.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-vegetable-salad-food-with-greens-beans-seasonings-dark-blue-background-ingredient-food-vegetable-color-photo_140725-31065.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Traditional Rice Dish",
|
||||
price: "$12.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-half-view-chicken-with-cheese-plate-bunch-parsley-half-lemon-cherry-tomatoes-grey-table-copy-place_140725-85340.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Chef Special Soup",
|
||||
price: "$8.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-baked-vegetables-potatoes-eggplants-fresh-off-oven-dark-space_140725-79246.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Fresh Salad Mix",
|
||||
price: "$6.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-baked-vegetables-potatoes-eggplants-fresh-off-oven-dark-space_140725-79527.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "House Specialty Bread",
|
||||
price: "$4.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-vegetables-potatoes-eggplants-fresh-off-oven-dark-space_140725-79607.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Signature Appetizer",
|
||||
price: "$9.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-chicken-with-cheese-plate-bunch-parsley-lemon-cherry-tomatoes-grey-background-with-copy-place_140725-141880.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Signature Dishes"
|
||||
description="Explore our selection of traditional delicacies crafted with passion and fresh local ingredients."
|
||||
/>
|
||||
</div>
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Grilled Meat Platter", price: "$15.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-vegetable-salad-food-with-greens-beans-seasonings-dark-blue-background-ingredient-food-vegetable-color-photo_140725-31065.jpg" },
|
||||
{ id: "p2", name: "Traditional Rice Dish", price: "$12.00", imageSrc: "http://img.b2bpic.net/free-photo/top-half-view-chicken-with-cheese-plate-bunch-parsley-half-lemon-cherry-tomatoes-grey-table-copy-place_140725-85340.jpg" },
|
||||
{ id: "p3", name: "Chef Special Soup", price: "$8.00", imageSrc: "http://img.b2bpic.net/free-photo/front-view-baked-vegetables-potatoes-eggplants-fresh-off-oven-dark-space_140725-79246.jpg" },
|
||||
{ id: "p4", name: "Fresh Salad Mix", price: "$6.00", imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-baked-vegetables-potatoes-eggplants-fresh-off-oven-dark-space_140725-79527.jpg" },
|
||||
{ id: "p5", name: "House Specialty Bread", price: "$4.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-vegetables-potatoes-eggplants-fresh-off-oven-dark-space_140725-79607.jpg" },
|
||||
{ id: "p6", name: "Signature Appetizer", price: "$9.00", imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-chicken-with-cheese-plate-bunch-parsley-lemon-cherry-tomatoes-grey-background-with-copy-place_140725-141880.jpg" },
|
||||
]}
|
||||
title="Our Signature Dishes"
|
||||
description="Explore our selection of traditional delicacies crafted with passion and fresh local ingredients."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Ahmed S.",
|
||||
role: "Frequent Guest",
|
||||
company: "Local Community",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-sitting-table_23-2149212148.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Sara M.",
|
||||
role: "Diner",
|
||||
company: "Food Enthusiast",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-pleasant-looking-afro-american-woman-enjoys-time-cafeteria_273609-28704.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Khaled F.",
|
||||
role: "Regular",
|
||||
company: "Local Guest",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/hand-with-spoon-feeding-man-dinner_23-2147969482.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Laila A.",
|
||||
role: "Family Guest",
|
||||
company: "Visitor",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/photo-attractive-black-woman-has-afro-hairstyle_273609-28702.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Omar R.",
|
||||
role: "First-time Visitor",
|
||||
company: "Local Resident",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-668.jpg",
|
||||
},
|
||||
]}
|
||||
kpiItems={[
|
||||
{
|
||||
value: "4.9",
|
||||
label: "Avg Rating",
|
||||
},
|
||||
{
|
||||
value: "98%",
|
||||
label: "Satisfaction",
|
||||
},
|
||||
{
|
||||
value: "500+",
|
||||
label: "Reviews",
|
||||
},
|
||||
]}
|
||||
title="What Our Guests Say"
|
||||
description="Don't just take our word for it—join the community of satisfied food lovers who call Abu Haidy home."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Ahmed S.", role: "Frequent Guest", company: "Local Community", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-sitting-table_23-2149212148.jpg" },
|
||||
{ id: "t2", name: "Sara M.", role: "Diner", company: "Food Enthusiast", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/photo-pleasant-looking-afro-american-woman-enjoys-time-cafeteria_273609-28704.jpg" },
|
||||
{ id: "t3", name: "Khaled F.", role: "Regular", company: "Local Guest", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/hand-with-spoon-feeding-man-dinner_23-2147969482.jpg" },
|
||||
{ id: "t4", name: "Laila A.", role: "Family Guest", company: "Visitor", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/photo-attractive-black-woman-has-afro-hairstyle_273609-28702.jpg" },
|
||||
{ id: "t5", name: "Omar R.", role: "First-time Visitor", company: "Local Resident", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-668.jpg" },
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "4.9", label: "Avg Rating" },
|
||||
{ value: "98%", label: "Satisfaction" },
|
||||
{ value: "500+", label: "Reviews" },
|
||||
]}
|
||||
title="What Our Guests Say"
|
||||
description="Don't just take our word for it—join the community of satisfied food lovers who call Abu Haidy home."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "15",
|
||||
title: "Years of Tradition",
|
||||
items: [
|
||||
"Established 2009",
|
||||
"Family owned",
|
||||
"Heritage focused",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "50+",
|
||||
title: "Signature Recipes",
|
||||
items: [
|
||||
"Secret spices",
|
||||
"Traditional method",
|
||||
"Handcrafted",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "24/7",
|
||||
title: "Supportive Staff",
|
||||
items: [
|
||||
"Dedicated team",
|
||||
"Fast service",
|
||||
"Friendly help",
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Numbers That Matter"
|
||||
description="Our commitment to quality translates into numbers that show why we remain a neighborhood favorite."
|
||||
/>
|
||||
</div>
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "m1", value: "15", title: "Years of Tradition", items: ["Established 2009", "Family owned", "Heritage focused"] },
|
||||
{ id: "m2", value: "50+", title: "Signature Recipes", items: ["Secret spices", "Traditional method", "Handcrafted"] },
|
||||
{ id: "m3", value: "24/7", title: "Supportive Staff", items: ["Dedicated team", "Fast service", "Friendly help"] },
|
||||
]}
|
||||
title="Numbers That Matter"
|
||||
description="Our commitment to quality translates into numbers that show why we remain a neighborhood favorite."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do I need a reservation?",
|
||||
content: "We recommend reservations on weekends but welcome walk-ins anytime.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Are there vegetarian options?",
|
||||
content: "Yes, we offer a wide variety of vegetarian-friendly traditional dishes.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Is parking available?",
|
||||
content: "Street parking is available directly in front of the restaurant.",
|
||||
},
|
||||
]}
|
||||
title="Commonly Asked Questions"
|
||||
description="Have questions about our hours or menu? We're here to help."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{ id: "f1", title: "Do I need a reservation?", content: "We recommend reservations on weekends but welcome walk-ins anytime." },
|
||||
{ id: "f2", title: "Are there vegetarian options?", content: "Yes, we offer a wide variety of vegetarian-friendly traditional dishes." },
|
||||
{ id: "f3", title: "Is parking available?", content: "Street parking is available directly in front of the restaurant." },
|
||||
]}
|
||||
title="Commonly Asked Questions"
|
||||
description="Have questions about our hours or menu? We're here to help."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Visit Us Today"
|
||||
title="Ready for an Authentic Meal?"
|
||||
description="Visit us today or call to book your table. We look forward to serving you the best of tradition."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:+966123456789",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Visit Us Today"
|
||||
title="Ready for an Authentic Meal?"
|
||||
description="Visit us today or call to book your table. We look forward to serving you the best of tradition."
|
||||
buttons={[{ text: "Call Now", href: "tel:+966123456789" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Abu Haidy"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "About Us",
|
||||
href: "#about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Directions",
|
||||
href: "https://maps.app.goo.gl/FTr4wvCaQDZN5QpWA",
|
||||
},
|
||||
{
|
||||
label: "Call Us",
|
||||
href: "tel:+966123456789",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Abu Haidy Restaurant. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="Abu Haidy"
|
||||
columns={[
|
||||
{ title: "Quick Links", items: [{ label: "Menu", href: "#menu" }, { label: "About Us", href: "#about" }] },
|
||||
{ title: "Contact", items: [{ label: "Directions", href: "https://maps.app.goo.gl/FTr4wvCaQDZN5QpWA" }, { label: "Call Us", href: "tel:+966123456789" }] },
|
||||
]}
|
||||
copyrightText="© 2024 Abu Haidy Restaurant. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user