Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ff4dde2109 | |||
| a58e801103 | |||
| 5f9cfd61a4 |
378
src/app/page.tsx
378
src/app/page.tsx
@@ -2,16 +2,16 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
|
||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -29,358 +29,124 @@ export default function LandingPage() {
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "products" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Miya Miya"
|
||||
button={{ text: "Order Now", href: "#products" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
<HeroBillboardCarousel
|
||||
title="Authentic Flavors, Miya Miya Style"
|
||||
description="Experience the true essence of Middle Eastern street food. Freshly prepared, flame-grilled shawarma that hits the spot, every single time."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-woman-holding-kebab_23-2148773544.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/couple-enjoying-food-restaurant_23-2149269176.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-man-eating-salmon-bowl_23-2150533979.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-waitress-holding-plate-with-muffin_107420-12322.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/stylish-smiling-woman-colorful-outfit-retro-vintage-50-s-cafe-dancing-wearing-jacket-blue-skirt-red-shirt-sunglasses-having-fun-cheerful-mood_285396-10388.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
]}
|
||||
avatarText="Loved by thousands"
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#products",
|
||||
},
|
||||
]}
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Halal Certified",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Farm-to-Table",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Secret Family Recipes",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Fast & Fresh",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Flame-Grilled",
|
||||
},
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-grilled-chicken-wrap-with-vegetables_123827-36162.jpg?_wi=1", imageAlt: "Shawarma Wrap" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-traditional-azerbaijani-dish-piti-pot-with-sumac-dried-herbs-onions-tray_141793-5179.jpg", imageAlt: "Traditional Dish" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MetricSplitMediaAbout
|
||||
<InlineImageSplitTextAbout
|
||||
heading={[{ type: "text", content: "Born in Tradition" }]}
|
||||
useInvertedBackground={false}
|
||||
title="Born in Tradition"
|
||||
description="Miya Miya started with a secret family recipe passed down through generations. We source the freshest ingredients to ensure every wrap delivers that authentic, nostalgic taste you crave."
|
||||
metrics={[
|
||||
{
|
||||
value: "100%",
|
||||
title: "Fresh Meat",
|
||||
},
|
||||
{
|
||||
value: "50+",
|
||||
title: "Spices Used",
|
||||
},
|
||||
{
|
||||
value: "20K+",
|
||||
title: "Happy Guests",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-traditional-azerbaijani-dish-piti-pot-with-sumac-dried-herbs-onions-tray_141793-5179.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
<ProductCardFour
|
||||
title="Our Signature Wraps"
|
||||
description="Taste the difference with our authentic recipes."
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Signature",
|
||||
name: "Classic Beef Shawarma",
|
||||
price: "$12.99",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-grilled-chicken-wrap-with-vegetables_123827-36162.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Traditional",
|
||||
name: "Falafel Pita Platter",
|
||||
price: "$10.49",
|
||||
rating: 5,
|
||||
reviewCount: "85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-falafel-wrap-with-sauce_23-2152015870.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Healthy",
|
||||
name: "Shawarma Salad Bowl",
|
||||
price: "$13.49",
|
||||
rating: 4,
|
||||
reviewCount: "62",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-chiken-doner-kebab-plate-with-bread-french-fries-tomatoes-onion-pickles-salad_140725-11893.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Combo",
|
||||
name: "Miya Miya Meal",
|
||||
price: "$15.99",
|
||||
rating: 5,
|
||||
reviewCount: "98",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-lunch-setup-with-soup-kebab-rice-side-dishes_140725-2002.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Sides",
|
||||
name: "Homemade Pita & Dips",
|
||||
price: "$7.99",
|
||||
rating: 5,
|
||||
reviewCount: "45",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/breakfast-board-with-fried-eggs-sausage-pancakes_114579-71890.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Dessert",
|
||||
name: "Classic Baklava",
|
||||
price: "$5.99",
|
||||
rating: 5,
|
||||
reviewCount: "112",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/turkish-desserts-with-kadaif-cup-shape-filled-with-nuts_140725-6866.jpg",
|
||||
},
|
||||
{ id: "p1", name: "Classic Beef Shawarma", price: "$12.99", variant: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/delicious-grilled-chicken-wrap-with-vegetables_123827-36162.jpg?_wi=2" },
|
||||
{ id: "p2", name: "Falafel Pita Platter", price: "$10.49", variant: "Traditional", imageSrc: "http://img.b2bpic.net/free-photo/delicious-falafel-wrap-with-sauce_23-2152015870.jpg" }
|
||||
]}
|
||||
title="Our Signature Wraps"
|
||||
description="Hand-carved perfection, seasoned to excellence, and served in our warm, fluffy pita bread."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "10+",
|
||||
title: "Years of Experience",
|
||||
items: [
|
||||
"Family-owned",
|
||||
"Time-tested recipes",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "15k",
|
||||
title: "Wraps Served Yearly",
|
||||
items: [
|
||||
"High quality",
|
||||
"Fresh ingredients",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "4.9",
|
||||
title: "Average Rating",
|
||||
items: [
|
||||
"Highly rated",
|
||||
"Trusted by locals",
|
||||
],
|
||||
},
|
||||
]}
|
||||
<MetricCardTwo
|
||||
title="Our Growth"
|
||||
description="We are proud to serve our community with honest, delicious food daily."
|
||||
description="Years of delivering quality food to our community."
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "m1", value: "10+", description: "Years of Experience" },
|
||||
{ id: "m2", value: "15k", description: "Wraps Served" },
|
||||
{ id: "m3", value: "4.9", description: "Average Rating" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
<TestimonialCardOne
|
||||
title="What Our Guests Say"
|
||||
description="See why our customers love our food."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonial="The best shawarma in town, hands down! The meat is always tender and the garlic sauce is perfection."
|
||||
rating={5}
|
||||
author="Sarah Miller"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-people-with-paper-wrapped-sandwiches_23-2151309963.jpg",
|
||||
alt: "Sarah Miller",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-man-with-paper-wrapped-sandwich_23-2151309938.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-women-holding-paper-wrapped-sandwich_23-2151311161.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-people-with-paper-wrapped-sandwiches_23-2151309967.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiley-woman-with-burger-showing-approval_23-2148705546.jpg",
|
||||
alt: "Customer",
|
||||
},
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sarah Miller", role: "Local Foodie", company: "CityEats", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-with-paper-wrapped-sandwiches_23-2151309963.jpg" }
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do you offer vegetarian options?",
|
||||
content: "Yes! Our falafel wraps and hummus platters are a local favorite.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Can I order online?",
|
||||
content: "Absolutely. Check our website links for delivery and pickup options.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Are your ingredients fresh?",
|
||||
content: "We take pride in using only farm-fresh produce and premium quality meats.",
|
||||
},
|
||||
]}
|
||||
<FaqDouble
|
||||
title="Hungry for Answers?"
|
||||
description="Common questions about Miya Miya Shawarma."
|
||||
description="Find answers to your questions here."
|
||||
faqsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-delicious-shawarma-dish_23-2151805413.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "f1", title: "Vegetarian options?", content: "Yes, we have delicious falafel options." },
|
||||
{ id: "f2", title: "Online ordering?", content: "Yes, available on our website." }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social" data-section="social">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Eater",
|
||||
"FoodWeekly",
|
||||
"CityGuide",
|
||||
"LocalFlavor",
|
||||
"BestEats",
|
||||
"DiningDaily",
|
||||
"ChefReview",
|
||||
]}
|
||||
title="Featured In"
|
||||
description="Proudly recognized by food critics and local publications."
|
||||
description="Recognition from trusted sources."
|
||||
names={["Eater", "FoodWeekly", "CityGuide"]}
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={true}
|
||||
<ContactCenter
|
||||
tag="Contact"
|
||||
title="Visit Us Today"
|
||||
description="Drop by our restaurant and experience the Miya Miya magic yourself. We're ready to serve you!"
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Any specific requests?",
|
||||
rows: 4,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/table-arrangement-with-food-wedding-event_23-2150292091.jpg"
|
||||
description="Drop by our restaurant and experience the Miya Miya magic yourself."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email address"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#products",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
<FooterBase
|
||||
logoText="Miya Miya"
|
||||
columns={[
|
||||
{ title: "Navigation", items: [{ label: "About", href: "#about" }, { label: "Menu", href: "#products" }] },
|
||||
{ title: "Support", items: [{ label: "Contact", href: "#contact" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user