Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
414
src/app/page.tsx
414
src/app/page.tsx
@@ -28,303 +28,139 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#products",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "#faq",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
]}
|
||||
brandName="KFC Midway Crossing"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Products", id: "#products" },
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "FAQ", id: "#faq" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
brandName="KFC Midway Crossing"
|
||||
button={{ text: "Order Now", href: "#products" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCarouselLogo
|
||||
logoText="KFC Midway Crossing"
|
||||
description="The world's best original recipe fried chicken, served hot and fresh. Visit us today for a meal you won't forget."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Online",
|
||||
href: "#products",
|
||||
},
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-street-food-neon-light_23-2151571770.jpg",
|
||||
imageAlt: "Fried Chicken",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-fried-chicken-sprinkled-with-pepper-seeds_1150-20218.jpg",
|
||||
imageAlt: "Chicken Piece",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-hamburger-close-up-with-beef-tomato-lettuce-cheese-french-fries-cutting-board-fastfood_114579-42.jpg",
|
||||
imageAlt: "Chicken Burger",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/blue-bucket-filled-with-popcorn-candy-blue_114579-60615.jpg",
|
||||
imageAlt: "Chicken Bucket",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chopped-carrot-cabbage-white-plate_114579-42843.jpg",
|
||||
imageAlt: "Mashed Potatoes",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sugar-cookies-with-fresh-sliced-oranges-dark-background-cookies-biscuit-sugar-cake-dessert-sweet_140725-99323.jpg",
|
||||
imageAlt: "Corn",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCarouselLogo
|
||||
logoText="KFC Midway Crossing"
|
||||
description="The world's best original recipe fried chicken, served hot and fresh. Visit us today for a meal you won't forget."
|
||||
buttons={[{ text: "Order Online", href: "#products" }]}
|
||||
slides={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-street-food-neon-light_23-2151571770.jpg", imageAlt: "Fried Chicken" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/crispy-fried-chicken-sprinkled-with-pepper-seeds_1150-20218.jpg", imageAlt: "Chicken Piece" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/homemade-hamburger-close-up-with-beef-tomato-lettuce-cheese-french-fries-cutting-board-fastfood_114579-42.jpg", imageAlt: "Chicken Burger" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/blue-bucket-filled-with-popcorn-candy-blue_114579-60615.jpg", imageAlt: "Chicken Bucket" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/chopped-carrot-cabbage-white-plate_114579-42843.jpg", imageAlt: "Mashed Potatoes" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sugar-cookies-with-fresh-sliced-oranges-dark-background-cookies-biscuit-sugar-cake-dessert-sweet_140725-99323.jpg", imageAlt: "Corn" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Authentic Taste, Served Here"
|
||||
description="At KFC Midway Crossing, we pride ourselves on bringing the Colonel's secret recipe of 11 herbs and spices to our local community. Every piece is hand-breaded and cooked to perfection."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Fresh Daily",
|
||||
description: "Hand-breaded every single day.",
|
||||
},
|
||||
{
|
||||
title: "Quality Ingredients",
|
||||
description: "Only high-quality farm-raised chicken.",
|
||||
},
|
||||
{
|
||||
title: "Secret Recipe",
|
||||
description: "The famous blend of 11 herbs and spices.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cinematic-film-location-decor_23-2151919021.jpg"
|
||||
imageAlt="KFC Storefront"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<SplitAbout
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Authentic Taste, Served Here"
|
||||
description="At KFC Midway Crossing, we pride ourselves on bringing the Colonel's secret recipe of 11 herbs and spices to our local community. Every piece is hand-breaded and cooked to perfection."
|
||||
bulletPoints={[
|
||||
{ title: "Fresh Daily", description: "Hand-breaded every single day." },
|
||||
{ title: "Quality Ingredients", description: "Only high-quality farm-raised chicken." },
|
||||
{ title: "Secret Recipe", description: "The famous blend of 11 herbs and spices." }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/cinematic-film-location-decor_23-2151919021.jpg"
|
||||
imageAlt="KFC Storefront"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="one-large-right-three-stacked-left"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Original Recipe Chicken",
|
||||
price: "$8.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fried-chicken-legs-with-different-types-sauce_23-2148646638.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Zinger Burger",
|
||||
price: "$6.49",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-chocolate-pan-beef-cheese-burger-with-vegetables-fast-food-french-fries-ketchup_114579-751.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Family Bucket",
|
||||
price: "$19.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fish-chips-paper-cups-with-great-britain-flags_23-2148784932.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Mashed Potatoes & Gravy",
|
||||
price: "$2.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-prepared-jewish-hanukkah-celebration_23-2151112339.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Biscuits",
|
||||
price: "$1.99",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-fresh-yellow-corns-with-lemon-dark-surface-corn-snack-food-raw-fresh_140725-101500.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Soft Drink",
|
||||
price: "$1.49",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fries-soda-made-out-clothes_23-2150864149.jpg",
|
||||
},
|
||||
]}
|
||||
title="Our Signature Menu"
|
||||
description="Explore our delicious range of chicken, sides, and refreshing drinks."
|
||||
/>
|
||||
</div>
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="one-large-right-three-stacked-left"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "p1", name: "Original Recipe Chicken", price: "$8.99", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fried-chicken-legs-with-different-types-sauce_23-2148646638.jpg" },
|
||||
{ id: "p2", name: "Zinger Burger", price: "$6.49", imageSrc: "http://img.b2bpic.net/free-photo/black-chocolate-pan-beef-cheese-burger-with-vegetables-fast-food-french-fries-ketchup_114579-751.jpg" },
|
||||
{ id: "p3", name: "Family Bucket", price: "$19.99", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fish-chips-paper-cups-with-great-britain-flags_23-2148784932.jpg" },
|
||||
{ id: "p4", name: "Mashed Potatoes & Gravy", price: "$2.99", imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-prepared-jewish-hanukkah-celebration_23-2151112339.jpg" },
|
||||
{ id: "p5", name: "Biscuits", price: "$1.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-fresh-yellow-corns-with-lemon-dark-surface-corn-snack-food-raw-fresh_140725-101500.jpg" },
|
||||
{ id: "p6", name: "Soft Drink", price: "$1.49", imageSrc: "http://img.b2bpic.net/free-photo/fries-soda-made-out-clothes_23-2150864149.jpg" }
|
||||
]}
|
||||
title="Our Signature Menu"
|
||||
description="Explore our delicious range of chicken, sides, and refreshing drinks."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "10K+",
|
||||
title: "Meals Served",
|
||||
description: "Satisfied customers.",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "5/5",
|
||||
title: "Customer Rating",
|
||||
description: "Average satisfaction.",
|
||||
icon: Star,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "24/7",
|
||||
title: "Service",
|
||||
description: "Always ready to serve.",
|
||||
icon: Clock,
|
||||
},
|
||||
]}
|
||||
title="Our Impact"
|
||||
description="Serving the Midway Crossing community for years with excellence."
|
||||
/>
|
||||
</div>
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "m1", value: "10K+", title: "Meals Served", description: "Satisfied customers.", icon: Award },
|
||||
{ id: "m2", value: "5/5", title: "Customer Rating", description: "Average satisfaction.", icon: Star },
|
||||
{ id: "m3", value: "24/7", title: "Service", description: "Always ready to serve.", icon: Clock }
|
||||
]}
|
||||
title="Our Impact"
|
||||
description="Serving the Midway Crossing community for years with excellence."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "John Doe",
|
||||
role: "Local Resident",
|
||||
testimonial: "The best chicken in town, always hot and fresh!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-local-traveler-with-camera_23-2149016703.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Jane Smith",
|
||||
role: "Office Worker",
|
||||
testimonial: "Quick service and great quality every time.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Robert Brown",
|
||||
role: "Student",
|
||||
testimonial: "My go-to place for a fast and tasty meal.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pleasant-looking-stylish-bearded-man-speaks-smart-phone_273609-8930.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Alice Wilson",
|
||||
role: "Mother",
|
||||
testimonial: "The family bucket is a life saver for dinner.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-happy-smiling-woman-enjoy-her-morning-french-breakfast-open-cafe-terrace-tasty-organic-food-holding-french-croissant-her-hand_291049-523.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Charlie Davis",
|
||||
role: "Regular Customer",
|
||||
testimonial: "Consistent taste and very friendly staff.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-spending-time-together-experiencing-time-expansion_23-2151338290.jpg",
|
||||
},
|
||||
]}
|
||||
title="What People Say"
|
||||
description="Our customers love the KFC experience at Midway Crossing."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "John Doe", role: "Local Resident", testimonial: "The best chicken in town, always hot and fresh!", imageSrc: "http://img.b2bpic.net/free-photo/male-local-traveler-with-camera_23-2149016703.jpg" },
|
||||
{ id: "t2", name: "Jane Smith", role: "Office Worker", testimonial: "Quick service and great quality every time.", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006709.jpg" },
|
||||
{ id: "t3", name: "Robert Brown", role: "Student", testimonial: "My go-to place for a fast and tasty meal.", imageSrc: "http://img.b2bpic.net/free-photo/pleasant-looking-stylish-bearded-man-speaks-smart-phone_273609-8930.jpg" },
|
||||
{ id: "t4", name: "Alice Wilson", role: "Mother", testimonial: "The family bucket is a life saver for dinner.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-image-happy-smiling-woman-enjoy-her-morning-french-breakfast-open-cafe-terrace-tasty-organic-food-holding-french-croissant-her-hand_291049-523.jpg" },
|
||||
{ id: "t5", name: "Charlie Davis", role: "Regular Customer", testimonial: "Consistent taste and very friendly staff.", imageSrc: "http://img.b2bpic.net/free-photo/people-spending-time-together-experiencing-time-expansion_23-2151338290.jpg" }
|
||||
]}
|
||||
title="What People Say"
|
||||
description="Our customers love the KFC experience at Midway Crossing."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Do you offer delivery?",
|
||||
content: "Yes, order through our mobile app or website.",
|
||||
},
|
||||
{
|
||||
id: "q2",
|
||||
title: "What are your hours?",
|
||||
content: "We are open daily from 10 AM to 10 PM.",
|
||||
},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Are there allergens?",
|
||||
content: "Our menu allergen information is available upon request.",
|
||||
},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Have questions? We have answers."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "q1", title: "Do you offer delivery?", content: "Yes, order through our mobile app or website." },
|
||||
{ id: "q2", title: "What are your hours?", content: "We are open daily from 10 AM to 10 PM." },
|
||||
{ id: "q3", title: "Are there allergens?", content: "Our menu allergen information is available upon request." }
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Have questions? We have answers."
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
text="Visit us at Midway Crossing today for your favorite KFC meal!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "#",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
text="Visit us at Midway Crossing today for your favorite KFC meal!"
|
||||
buttons={[{ text: "Get Directions", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "KFC",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
bottomLeftText="© 2024 KFC Midway Crossing"
|
||||
bottomRightText="All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "KFC", items: [{ label: "Menu", href: "#products" }, { label: "About", href: "#about" }] },
|
||||
{ title: "Support", items: [{ label: "Contact", href: "#contact" }, { label: "FAQ", href: "#faq" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 KFC Midway Crossing"
|
||||
bottomRightText="All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user