Merge version_1 into main #2
@@ -7,7 +7,7 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -22,80 +22,54 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Belle Food"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Belle Food"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-us" data-section="about-us">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="About Belle Food & King Mitchy"
|
||||
description="Founded with a passion for excellence, Belle Food brings the authentic 24/7 fresh food movement to Chevron, Lagos. Every meal reflects King Mitchy's commitment to quality and freshness."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-drinking-coffee-reading-newspaper_23-2147793074.jpg"
|
||||
imageAlt="About Belle Food"
|
||||
/>
|
||||
</div>
|
||||
<div id="about-us" data-section="about-us">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="About Belle Food & King Mitchy"
|
||||
description="Founded with a passion for excellence, Belle Food brings the authentic 24/7 fresh food movement to Chevron, Lagos. Every meal reflects King Mitchy's commitment to quality and freshness."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/man-drinking-coffee-reading-newspaper_23-2147793074.jpg"
|
||||
imageAlt="About Belle Food"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Meet the Team"
|
||||
description="The passionate individuals behind every plate."
|
||||
groups={[
|
||||
{
|
||||
id: "g1",
|
||||
groupTitle: "Kitchen Experts",
|
||||
members: [
|
||||
{
|
||||
id: "m1",
|
||||
title: "King Mitchy",
|
||||
subtitle: "Founder & Head Chef",
|
||||
detail: "Bringing authentic flavors to every meal.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/culinary-expert-commercial-kitchen-prepares-dish-with-fresh-basil-parsley_482257-124314.jpg",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
title: "Chef Sarah",
|
||||
subtitle: "Lead Cook",
|
||||
detail: "Expert in traditional recipes.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-salad_23-2148145617.jpg",
|
||||
},
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lime-amidst-various-dishes-spices_23-2147894862.jpg?_wi=3",
|
||||
imageAlt: "Culinary expert in commercial kitchen prepares dish with fresh basil and parsley",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Meet the Team"
|
||||
description="The passionate individuals behind every plate."
|
||||
groups={[
|
||||
{
|
||||
id: "g1", groupTitle: "Kitchen Experts", members: [
|
||||
{
|
||||
id: "m1", title: "King Mitchy", subtitle: "Founder & Head Chef", detail: "Bringing authentic flavors to every meal.", imageSrc: "http://img.b2bpic.net/free-photo/culinary-expert-commercial-kitchen-prepares-dish-with-fresh-basil-parsley_482257-124314.jpg"},
|
||||
{
|
||||
id: "m2", title: "Chef Sarah", subtitle: "Lead Cook", detail: "Expert in traditional recipes.", imageSrc: "http://img.b2bpic.net/free-photo/chef-preparing-salad_23-2148145617.jpg"},
|
||||
],
|
||||
imageAlt: "Culinary expert in commercial kitchen prepares dish with fresh basil and parsley"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Belle Food"
|
||||
copyrightText="© 2025 Belle Food Lagos. All Rights Reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Belle Food"
|
||||
copyrightText="© 2025 Belle Food Lagos. All Rights Reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
238
src/app/page.tsx
238
src/app/page.tsx
@@ -7,8 +7,8 @@ import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -25,173 +25,87 @@ export default function LandingPage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Belle Food"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Belle Food"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Only @bellefood01 Dey run am 24/7"
|
||||
description="Premium fresh Nigerian food in Chevron, Lagos. Available whenever hunger strikes."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "https://wa.me/2349137421838",
|
||||
},
|
||||
{
|
||||
text: "Call Us",
|
||||
href: "tel:+2349137421838",
|
||||
},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lime-amidst-various-dishes-spices_23-2147894862.jpg?_wi=1",
|
||||
imageAlt: "Jollof Rice",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/purple-rice-berries-cooked-with-grilled-chicken-breast-pumpkin-carrots-mint-leaves-dish-clean-food_1150-20159.jpg",
|
||||
imageAlt: "Fried Rice",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimal-white-table-arrangement_23-2148941060.jpg",
|
||||
imageAlt: "Grilled Fish",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-vegetable-meal-with-meat-sliced-bell-peppers-wooden-desk_140725-62127.jpg",
|
||||
imageAlt: "Assorted Meat",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-potatoes-with-meatballs-vegetables-inside-plate-dark-blue-floor_140725-49952.jpg",
|
||||
imageAlt: "Yam Platter",
|
||||
},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Only @bellefood01 Dey run am 24/7"
|
||||
description="Premium fresh Nigerian food in Chevron, Lagos. Available whenever hunger strikes."
|
||||
buttons={[
|
||||
{ text: "Order Now", href: "https://wa.me/2349137421838" },
|
||||
{ text: "Call Us", href: "tel:+2349137421838" },
|
||||
]}
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/lime-amidst-various-dishes-spices_23-2147894862.jpg", imageAlt: "Jollof Rice" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/purple-rice-berries-cooked-with-grilled-chicken-breast-pumpkin-carrots-mint-leaves-dish-clean-food_1150-20159.jpg", imageAlt: "Fried Rice" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/minimal-white-table-arrangement_23-2148941060.jpg", imageAlt: "Grilled Fish" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-vegetable-meal-with-meat-sliced-bell-peppers-wooden-desk_140725-62127.jpg", imageAlt: "Assorted Meat" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-baked-potatoes-with-meatballs-vegetables-inside-plate-dark-blue-floor_140725-49952.jpg", imageAlt: "Yam Platter" },
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSix
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "24/7 Always Open",
|
||||
description: "We are always ready to serve you fresh meals, anytime of the day or night.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/plates-vegetable-stew-pilaf_141793-1108.jpg",
|
||||
imageAlt: "24/7 Icon",
|
||||
},
|
||||
{
|
||||
title: "Premium Fresh Ingredients",
|
||||
description: "Only the finest local produce and authentic spices for our signature dishes.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bottom-half-view-asian-ramen-noodles-black-round-plate-dark-table_140725-145983.jpg",
|
||||
imageAlt: "Fresh Ingredients",
|
||||
},
|
||||
{
|
||||
title: "Chevron Location",
|
||||
description: "Centrally located at Abiola Court 10, Chevron Alternative Route, Lagos.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-from-afar-pasta-sauces-plate-pasta-with-gravy-meat-bowls-tomatoes-sauces-purple-tablecloth-dark-table_140725-111340.jpg",
|
||||
imageAlt: "Location",
|
||||
},
|
||||
]}
|
||||
title="Why Choose Belle Food?"
|
||||
description="Experience the best of Nigerian hospitality, prepared with King Mitchy's premium touch."
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSix
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "24/7 Always Open", description: "We are always ready to serve you fresh meals, anytime of the day or night.", imageSrc: "http://img.b2bpic.net/free-photo/plates-vegetable-stew-pilaf_141793-1108.jpg", imageAlt: "24/7 Icon" },
|
||||
{ title: "Premium Fresh Ingredients", description: "Only the finest local produce and authentic spices for our signature dishes.", imageSrc: "http://img.b2bpic.net/free-photo/bottom-half-view-asian-ramen-noodles-black-round-plate-dark-table_140725-145983.jpg", imageAlt: "Fresh Ingredients" },
|
||||
{ title: "Chevron Location", description: "Centrally located at Abiola Court 10, Chevron Alternative Route, Lagos.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-from-afar-pasta-sauces-plate-pasta-with-gravy-meat-bowls-tomatoes-sauces-purple-tablecloth-dark-table_140725-111340.jpg", imageAlt: "Location" },
|
||||
]}
|
||||
title="Why Choose Belle Food?"
|
||||
description="Experience the best of Nigerian hospitality, prepared with King Mitchy's premium touch."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah Ade",
|
||||
role: "Food Blogger",
|
||||
company: "LagosEats",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-girl-with-lemons_23-2148483076.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Tunde Bakare",
|
||||
role: "Tech Founder",
|
||||
company: "Innovate",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-female-with-curly-bushy-hairstyle-shares-media-social-networks-uses-free-internet-connection-chating-with-friends-listening-favourite-music-headphones-leisure-concept_273609-2467.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Chioma Eze",
|
||||
role: "Marketing",
|
||||
company: "Brands",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5281.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David Musa",
|
||||
role: "Artist",
|
||||
company: "Creative",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fashionable-hipster-guy-dressed-denim-shirt-wearing-stylish-glasses_273609-6819.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Fola Ojo",
|
||||
role: "Teacher",
|
||||
company: "Schools",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thin-tanned-woman-brown-bra-stylish-denim-shorts-enjoys-taste-waffle-with-cream-peanuts-maple-syrup_197531-18189.jpg",
|
||||
},
|
||||
]}
|
||||
title="Real Foodie Experiences"
|
||||
description="See why Lagos foodies love Belle Food."
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sarah Ade", role: "Food Blogger", company: "LagosEats", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/front-view-beautiful-girl-with-lemons_23-2148483076.jpg" },
|
||||
{ id: "t2", name: "Tunde Bakare", role: "Tech Founder", company: "Innovate", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/african-american-female-with-curly-bushy-hairstyle-shares-media-social-networks-uses-free-internet-connection-chating-with-friends-listening-favourite-music-headphones-leisure-concept_273609-2467.jpg" },
|
||||
{ id: "t3", name: "Chioma Eze", role: "Marketing", company: "Brands", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5281.jpg" },
|
||||
{ id: "t4", name: "David Musa", role: "Artist", company: "Creative", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/fashionable-hipster-guy-dressed-denim-shirt-wearing-stylish-glasses_273609-6819.jpg" },
|
||||
{ id: "t5", name: "Fola Ojo", role: "Teacher", company: "Schools", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/thin-tanned-woman-brown-bra-stylish-denim-shorts-enjoys-taste-waffle-with-cream-peanuts-maple-syrup_197531-18189.jpg" },
|
||||
]}
|
||||
title="Real Foodie Experiences"
|
||||
description="See why Lagos foodies love Belle Food."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/lime-amidst-various-dishes-spices_23-2147894862.jpg?_wi=2"
|
||||
imageAlt="jollof rice mouth watering close up"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
videoSrc="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection />
|
||||
</div>
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection layout="full" title="Legal Information" sections={[]} />
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Belle Food"
|
||||
copyrightText="© 2025 Belle Food Lagos. All Rights Reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Belle Food"
|
||||
copyrightText="© 2025 Belle Food Lagos. All Rights Reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user