Merge version_2 into main #2
476
src/app/page.tsx
476
src/app/page.tsx
@@ -2,17 +2,18 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import { Sparkles, Star, Target, CheckCircle2 } from "lucide-react";
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -20,433 +21,146 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="small"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="grid"
|
||||
cardStyle="gradient-radial"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="light"
|
||||
contentWidth="medium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="noiseDiagonalGradient"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
{
|
||||
name: "Quality",
|
||||
id: "#quality",
|
||||
},
|
||||
{
|
||||
name: "Offers",
|
||||
id: "#offers",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "Menu", id: "#menu" },
|
||||
{ name: "Problems", id: "#quality" },
|
||||
{ name: "Pricing", id: "#offers" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
brandName="Burger Storm"
|
||||
brandName="Nashy Chick"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
background={{
|
||||
variant: "glowing-orb",
|
||||
}}
|
||||
title="UNLEASH THE STORM."
|
||||
description="Premium burgers. Massive flavor. Zero compromises."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Ahmed K.",
|
||||
handle: "@foodie",
|
||||
testimonial: "Next level burger — juicy and full of flavor.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-delicious-burger-assortment_23-2148868225.jpg?_wi=1",
|
||||
imageAlt: "gourmet burger dark background",
|
||||
},
|
||||
{
|
||||
name: "Sara M.",
|
||||
handle: "@local",
|
||||
testimonial: "Huge portions and super satisfying.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/juicy-cheeseburger-with-pickles-onions_140725-9559.jpg?_wi=1",
|
||||
imageAlt: "gourmet burger dark background",
|
||||
},
|
||||
{
|
||||
name: "Omar F.",
|
||||
handle: "@critic",
|
||||
testimonial: "Clean place, respectful staff, amazing experience.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/product-photographer-with-camera-studio_23-2148970262.jpg?_wi=1",
|
||||
imageAlt: "gourmet burger dark background",
|
||||
},
|
||||
{
|
||||
name: "Laila H.",
|
||||
handle: "@foodie",
|
||||
testimonial: "Best burger in Egypt.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mouth-watering-double-cheeseburger-with-melted-cheese_84443-73646.jpg?_wi=1",
|
||||
imageAlt: "gourmet burger dark background",
|
||||
},
|
||||
{
|
||||
name: "Kareem T.",
|
||||
handle: "@user",
|
||||
testimonial: "Staff are super friendly and professional.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/having-lunch-spacious-restaurant_52683-117480.jpg?_wi=1",
|
||||
imageAlt: "gourmet burger dark background",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "ORDER NOW",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
text: "VIEW MENU",
|
||||
href: "#menu",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-delicious-burger-assortment_23-2148868225.jpg?_wi=2"
|
||||
imageAlt="Cinematic Burger"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598413.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/couple-having-dinner-restaurant_23-2148018846.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081870.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/friends-eating-pizza-side-view_23-2149872410.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/aged-middle-expression-calling-business_1262-2838.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
]}
|
||||
avatarText="Join 50k+ storm chasers."
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "FRESH INGREDIENTS",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "SMASHED TO PERFECTION",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "BEEF, CHEESE, STORM",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "ORDER ONLINE",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "NO COMPROMISES",
|
||||
},
|
||||
<HeroSplitDualMedia
|
||||
tag="THE LUXURY CHOICE"
|
||||
title="Redefining The Chick Experience"
|
||||
description="Impeccable quality, unmatched flavors, and a service standard designed for those who appreciate the finer things in life."
|
||||
rating={5}
|
||||
ratingText="5.0/5.0 Stars"
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/chicken-breast-with-vegetables_144627-26039.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-fried-chicken-plate_144627-27395.jpg" }
|
||||
]}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
buttons={[{ text: "Explore Our Menu", href: "#menu" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
<MetricCardFourteen
|
||||
tag="THE HEAT SCALE"
|
||||
title="Precision Spice Levels"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "4.8",
|
||||
title: "Avg Rating",
|
||||
items: [
|
||||
"Based on 398 verified reviews",
|
||||
"Top-rated flavor profile",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "50K+",
|
||||
title: "Served",
|
||||
items: [
|
||||
"Burgers served since launch",
|
||||
"Thousands of satisfied customers",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "92%",
|
||||
title: "Retention",
|
||||
items: [
|
||||
"Repeat customers",
|
||||
"High satisfaction rate",
|
||||
],
|
||||
},
|
||||
{ id: "s1", value: "Mild", description: "Gentle warmth for an elevated palette." },
|
||||
{ id: "s2", value: "Bold", description: "A perfect harmony of heat and depth." },
|
||||
{ id: "s3", value: "Inferno", description: "For those who dare to master the fire." }
|
||||
]}
|
||||
title="TRUST THE STORM."
|
||||
description="Numbers speak louder than words."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Thunder Beef Burger",
|
||||
price: "$12.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/juicy-cheeseburger-with-pickles-onions_140725-9559.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Double Smash Storm",
|
||||
price: "$15.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mouth-watering-double-cheeseburger-with-melted-cheese_84443-73646.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Fire Chicken",
|
||||
price: "$11.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/product-photographer-with-camera-studio_23-2148970262.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Loaded Fries",
|
||||
price: "$5.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-eating-french-fries-burger-restaurant_169016-22612.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Storm Sauce",
|
||||
price: "$1.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sandwich-with-chicken-burger-tomatoes-lettuce_2829-16584.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Fried Cheese",
|
||||
price: "$4.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/composition-with-delicious-vegan-burger_23-2149039331.jpg",
|
||||
},
|
||||
]}
|
||||
title="STORM CLASSICS"
|
||||
description="Consistently powerful flavor. No compromises."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="quality" data-section="quality">
|
||||
<FeatureCardSix
|
||||
<FeatureCardTwentyFive
|
||||
tag="THE NASHY PROMISE"
|
||||
title="Fixed Problems, Perfected Flavors"
|
||||
description="We identified the common pitfalls of casual dining and systematically eliminated them to bring you a truly premium experience."
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Real Meat Only",
|
||||
description: "No frozen shortcuts. Ever.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-cook-placing-fried-bacon-slice-ofcheese-while-layering-burger_181624-57745.jpg",
|
||||
},
|
||||
{
|
||||
title: "Perfectly Cooked",
|
||||
description: "Juicy inside. Crispy outside.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-burger-with-onion-sauces_23-2148374930.jpg",
|
||||
},
|
||||
{
|
||||
title: "Clean & Premium",
|
||||
description: "You taste the difference in quality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-burger-plate-with-kitchen-towel_23-2148784443.jpg",
|
||||
},
|
||||
{
|
||||
title: "Respectful Service",
|
||||
description: "VIP treatment every time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-dish-with-quinoa-meat_181624-28743.jpg",
|
||||
},
|
||||
{ title: "Cold Food", description: "Ensuring every bite arrives perfectly tempered.", icon: Target, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/chicken-breast-with-vegetables_144627-26039.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/delicious-fried-chicken-plate_144627-27395.jpg" }] },
|
||||
{ title: "Inconsistent Spice", description: "Our precision kitchen guarantees flavor uniformity.", icon: Sparkles, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/chicken-breast-with-vegetables_144627-26039.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/delicious-fried-chicken-plate_144627-27395.jpg" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardTwo
|
||||
tag="OUR SELECTIONS"
|
||||
title="Menu Preview"
|
||||
description="Discover the art of the perfect bird, prepared with our signature luxury process."
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
animationType="slide-up"
|
||||
products={[
|
||||
{ id: "p1", brand: "Signature", name: "Nashy Royal", price: "$18.00", rating: 5, reviewCount: "1.2k", imageSrc: "http://img.b2bpic.net/free-photo/delicious-fried-chicken-plate_144627-27395.jpg" },
|
||||
{ id: "p2", brand: "Signature", name: "The Gold Fillet", price: "$22.00", rating: 5, reviewCount: "800", imageSrc: "http://img.b2bpic.net/free-photo/chicken-breast-with-vegetables_144627-26039.jpg" }
|
||||
]}
|
||||
title="WHY BURGER STORM?"
|
||||
description="We don't cut corners. We focus on power and flavor."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="commitment" data-section="commitment">
|
||||
<TextAbout
|
||||
useInvertedBackground={true}
|
||||
title="WE HEARD YOU. WE IMPROVED."
|
||||
buttons={[
|
||||
{
|
||||
text: "DISCOVER MORE",
|
||||
},
|
||||
]}
|
||||
tag="COMMITMENT"
|
||||
title="A Standard Of Excellence"
|
||||
description="Nashy Chick is built on the philosophy that quality isn't just a goal; it's our starting point."
|
||||
subdescription="We don't serve food; we serve a curated experience of premium culinary craftsmanship."
|
||||
icon={CheckCircle2}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/chicken-breast-with-vegetables_144627-26039.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="offers" data-section="offers">
|
||||
<PricingCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
<PricingCardEight
|
||||
tag="PRICING"
|
||||
title="Curated Experiences"
|
||||
description="Select the tier that best matches your appetite for luxury."
|
||||
animationType="blur-reveal"
|
||||
plans={[
|
||||
{
|
||||
id: "pl1",
|
||||
badge: "Popular",
|
||||
price: "$20",
|
||||
subtitle: "Double Trouble Combo",
|
||||
features: [
|
||||
"2 Burgers",
|
||||
"1 Large Fries",
|
||||
"2 Sauces",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "pl2",
|
||||
badge: "Storm",
|
||||
price: "$35",
|
||||
subtitle: "Family Storm Box",
|
||||
features: [
|
||||
"4 Burgers",
|
||||
"2 Fries",
|
||||
"4 Sauces",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "pl3",
|
||||
badge: "New",
|
||||
price: "$15",
|
||||
subtitle: "Single Storm Meal",
|
||||
features: [
|
||||
"1 Burger",
|
||||
"1 Fries",
|
||||
"1 Sauce",
|
||||
],
|
||||
},
|
||||
{ id: "pl1", badge: "Essential", price: "$25", subtitle: "Single Experience", buttons: [{ text: "Choose" }], features: ["Signature Fillet", "Side of Choice", "Signature Drink"] },
|
||||
{ id: "pl2", badge: "Premium", price: "$45", subtitle: "Duo Luxury Box", buttons: [{ text: "Choose" }], features: ["2x Signature Fillets", "Truffle Fries", "Shared Appetizer"] }
|
||||
]}
|
||||
title="STORM MEAL DEALS"
|
||||
description="Limited time offers for the hungry."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="gallery" data-section="gallery">
|
||||
<BlogCardTwo
|
||||
tag="THE VIBE"
|
||||
title="Atmosphere & Detail"
|
||||
description="Every element of Nashy Chick is designed for the discerning diner."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
title="VISUAL STORM"
|
||||
description="Emotional hunger in every bite."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Visuals",
|
||||
title: "Saucy Perfection",
|
||||
excerpt: "Freshly cooked beef dripping in secret storm sauce.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salad-with-red-caviar-salmon-avocado_140725-6797.jpg",
|
||||
authorName: "Chef",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/grilled-lamb-meat-steak_1203-9351.jpg",
|
||||
date: "2025",
|
||||
},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Visuals",
|
||||
title: "Crispy Fries",
|
||||
excerpt: "Slow motion perfection, golden brown.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-beef-burger-ciabatta-bun-homemade-generated-by-ai_188544-21445.jpg",
|
||||
authorName: "Chef",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/front-view-fried-chicken-burger_23-2148699050.jpg",
|
||||
date: "2025",
|
||||
},
|
||||
{
|
||||
id: "b3",
|
||||
category: "Visuals",
|
||||
title: "Team Effort",
|
||||
excerpt: "Friendly staff working hard to serve you.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-homemade-delicious-sandwiches-black-board-gray-blurred-surface_179666-42327.jpg",
|
||||
authorName: "Staff",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/flat-lay-burger-wooden-board-with-fries-beer_23-2148238481.jpg",
|
||||
date: "2025",
|
||||
},
|
||||
]}
|
||||
blogs={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
<TestimonialCardTwo
|
||||
tag="TESTIMONIALS"
|
||||
title="Voices of Luxury"
|
||||
description="What our guests are saying about the Nashy Chick standard."
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="split"
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "Best in town",
|
||||
quote: "Best burger in Egypt.",
|
||||
name: "Ahmed",
|
||||
role: "Fan",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/having-lunch-spacious-restaurant_52683-117480.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
title: "Friendly staff",
|
||||
quote: "Staff are super friendly and professional.",
|
||||
name: "Sara",
|
||||
role: "Fan",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-with-smartphone_23-2148294016.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
title: "Amazing food",
|
||||
quote: "Clean place and amazing food.",
|
||||
name: "Omar",
|
||||
role: "Fan",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-11786.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
title: "Delicious",
|
||||
quote: "Juicy and full of flavor.",
|
||||
name: "Laila",
|
||||
role: "Fan",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-fast-food-meal_23-2149291746.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
title: "Great value",
|
||||
quote: "Good value for money.",
|
||||
name: "Kareem",
|
||||
role: "Fan",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-female-with-hair-bun-having-joyful-look-smiling-cheerfully-happy-with-some-positive-news_273609-9042.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Alex P.", role: "Food Critic", testimonial: "The most refined chicken experience in the market. Absolute perfection.", icon: Star }
|
||||
]}
|
||||
title="WHAT THEY SAY"
|
||||
description="Real feedback from real storm chasers."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
tag="READY TO TASTE THE STORM?"
|
||||
title="ORDER NOW"
|
||||
description="Find us on Talabat, Mrsool, or order directly via WhatsApp."
|
||||
<ContactCTA
|
||||
tag="GET IN TOUCH"
|
||||
title="Experience The Difference"
|
||||
description="Ready to elevate your standards? Secure your table or place an order today."
|
||||
buttons={[{ text: "Book Your Experience" }]}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="BURGER STORM"
|
||||
copyrightText="© 2025 Burger Storm. No compromises."
|
||||
<FooterSimple
|
||||
columns={[]}
|
||||
bottomLeftText="© 2025 Nashy Chick"
|
||||
bottomRightText="Luxury Culinary Experience"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user