Merge version_1 into main #2
@@ -7,104 +7,66 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import TeamCardTen from '@/components/sections/team/TeamCardTen';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "/products",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="BeckyReshi"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={false}
|
||||
title="Our Impact in Numbers"
|
||||
tag="Excellence"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "500+",
|
||||
description: "Happy families served",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "100%",
|
||||
description: "Quality assurance rate",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "5+",
|
||||
description: "Years of experience",
|
||||
},
|
||||
{
|
||||
id: "m4",
|
||||
value: "24/7",
|
||||
description: "Dedicated customer support",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardTen
|
||||
useInvertedBackground={false}
|
||||
title="Our Leadership"
|
||||
tag="Meet the Team"
|
||||
memberVariant="card"
|
||||
membersAnimation="slide-up"
|
||||
members={[
|
||||
{
|
||||
id: "tm1",
|
||||
name: "Rebecca R.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-food_23-2149536952.jpg",
|
||||
},
|
||||
{
|
||||
id: "tm2",
|
||||
name: "Tunde A.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-smiling-black-unshaven-male-shirt-sitting-wooden-chair-cafe-drinking-hot-coffee-cappuccino-looking-someone-with-smile-while-having-pleasant-talk-with-friend_273609-480.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="BeckyReshi"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Terms of Service",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="BeckyReshi"
|
||||
/>
|
||||
</div>
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={false}
|
||||
title="Our Impact in Numbers"
|
||||
tag="Excellence"
|
||||
metrics={[
|
||||
{ id: "m1", value: "500+", description: "Happy families served" },
|
||||
{ id: "m2", value: "100%", description: "Quality assurance rate" },
|
||||
{ id: "m3", value: "5+", description: "Years of experience" },
|
||||
{ id: "m4", value: "24/7", description: "Dedicated customer support" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardTen
|
||||
useInvertedBackground={false}
|
||||
title="Our Leadership"
|
||||
tag="Meet the Team"
|
||||
memberVariant="card"
|
||||
membersAnimation="slide-up"
|
||||
members={[
|
||||
{ id: "tm1", name: "Rebecca R.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-food_23-2149536952.jpg" },
|
||||
{ id: "tm2", name: "Tunde A.", imageSrc: "http://img.b2bpic.net/free-photo/indoor-shot-smiling-black-unshaven-male-shirt-sitting-wooden-chair-cafe-drinking-hot-coffee-cappuccino-looking-someone-with-smile-while-having-pleasant-talk-with-friend_273609-480.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="BeckyReshi"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -7,87 +7,63 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "/products",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="BeckyReshi"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Let's Connect"
|
||||
title="We'd Love to Hear From You"
|
||||
description="Reach out for business partnerships, bulk orders, or any inquiries regarding our products."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-fresh-mushrooms-tasty-cauliflower-bowl-oil-bottle-black-pepper-small-wooden-bowl-garlic-red-onion-grey-table-copy-place_140725-147402.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
buttonText="Submit Inquiry"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={false}
|
||||
title="Reaching Us"
|
||||
tag="Customer Service"
|
||||
metrics={[
|
||||
{
|
||||
id: "c1",
|
||||
value: "Abuja",
|
||||
description: "Primary operating base",
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
value: "1hr",
|
||||
description: "Average response time",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="BeckyReshi"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Terms of Service",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="BeckyReshi"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Let's Connect"
|
||||
title="We'd Love to Hear From You"
|
||||
description="Reach out for business partnerships, bulk orders, or any inquiries regarding our products."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-fresh-mushrooms-tasty-cauliflower-bowl-oil-bottle-black-pepper-small-wooden-bowl-garlic-red-onion-grey-table-copy-place_140725-147402.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
buttonText="Submit Inquiry"
|
||||
/>
|
||||
</div>
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={false}
|
||||
title="Reaching Us"
|
||||
tag="Customer Service"
|
||||
metrics={[
|
||||
{ id: "c1", value: "Abuja", description: "Primary operating base" },
|
||||
{ id: "c2", value: "1hr", description: "Average response time" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="BeckyReshi"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
280
src/app/page.tsx
280
src/app/page.tsx
@@ -15,201 +15,95 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "/products",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="BeckyReshi"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
title="Premium Food Products You Can Trust — Delivered with Excellence"
|
||||
description="At BeckyReshi Business Ventures, we supply high-quality food ingredients that bring rich taste, purity, and confidence to your kitchen."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "/products",
|
||||
},
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "/contact",
|
||||
},
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-vegetables_140725-35999.jpg?_wi=1",
|
||||
imageAlt: "Fresh food supply ingredients",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-carrots-plate_23-2148678873.jpg?_wi=1",
|
||||
imageAlt: "Quality ingredients showcase",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-raw-eggplants-arrangement_23-2150317352.jpg",
|
||||
imageAlt: "Premium supply delivery",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-vegetables-colorful-pasta-with-mushroom-garlic-pepper-white-surface_176474-312.jpg?_wi=1",
|
||||
imageAlt: "Fresh produce selection",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-vegetables-with-different-seasonings-greens-dark-blue-desk_140725-115244.jpg",
|
||||
imageAlt: "BeckyReshi ingredients",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/assortments-treats-halloween_23-2148603678.jpg",
|
||||
imageAlt: "Trusted food supplier",
|
||||
},
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-preview" data-section="about-preview">
|
||||
<SplitAbout
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Quality You Can Taste. Trust You Can Feel."
|
||||
description="BeckyReshi Business Ventures is a trusted food products supplier based in Abuja, committed to delivering only the finest quality ingredients to homes and businesses."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Quality Assured",
|
||||
description: "Every product is carefully sourced and quality-checked.",
|
||||
},
|
||||
{
|
||||
title: "Authentic Taste",
|
||||
description: "We bring rich, pure flavors to your kitchen.",
|
||||
},
|
||||
{
|
||||
title: "Reliable Service",
|
||||
description: "Delivering excellence with every order.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/arrangement-delicious-autumn-fruits_23-2148634416.jpg"
|
||||
imageAlt="Authentic Nigerian cooking ingredients display"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
date: "Oct 2023",
|
||||
title: "Loyal Customer",
|
||||
quote: "Your red oil is great for cooking all kinds of soups and tastes so great.",
|
||||
tag: "Verified",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-female_23-2148480700.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-vegetables_140725-35999.jpg?_wi=2",
|
||||
imageAlt: "happy customer portrait Nigeria",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael C.",
|
||||
date: "Sep 2023",
|
||||
title: "Business Owner",
|
||||
quote: "A vendor you can definitely trust. Your resources are safe and value is guaranteed.",
|
||||
tag: "Verified",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/girl-red-holding-bananas-fruits-store_627829-9465.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/oil-bubbles-floating-red-yellow-water-surface_23-2147876133.jpg",
|
||||
imageAlt: "happy customer portrait Nigeria",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
date: "Aug 2023",
|
||||
title: "Happy Home",
|
||||
quote: "One of the best food vendors in Abuja — tested and trusted.",
|
||||
tag: "Verified",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/woman-holding-bowl-dog-bones-shop_107420-95959.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-white-shirt-showing-ok-signs-looking-happy_176474-17426.jpg",
|
||||
imageAlt: "happy customer portrait Nigeria",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David K.",
|
||||
date: "Jul 2023",
|
||||
title: "Regular Buyer",
|
||||
quote: "Premium quality every single time. Simply the best.",
|
||||
tag: "Verified",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-co-worker-spending-time-office_23-2149328310.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-carrots-plate_23-2148678873.jpg?_wi=2",
|
||||
imageAlt: "happy customer portrait Nigeria",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Fiona M.",
|
||||
date: "Jun 2023",
|
||||
title: "Daily Shopper",
|
||||
quote: "Reliable and consistent. Highly recommended!",
|
||||
tag: "Verified",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/fresh-raw-eggplants-arrangement_23-2150317352.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-vegetables-colorful-pasta-with-mushroom-garlic-pepper-white-surface_176474-312.jpg?_wi=2",
|
||||
imageAlt: "happy customer portrait Nigeria",
|
||||
},
|
||||
]}
|
||||
title="What Our Customers Say"
|
||||
description="Tested and trusted by families across Abuja."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
tag="Contact Us"
|
||||
title="Ready to get started?"
|
||||
description="Have questions about our supplies or bulk orders? Get in touch with our team today."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fried-caucasian-khinkali-with-herbs-black-pan_114579-34780.jpg"
|
||||
imageAlt="Fresh ingredients for cooking"
|
||||
mediaAnimation="slide-up"
|
||||
inputPlaceholder="Enter your email for inquiries"
|
||||
buttonText="Send Message"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="BeckyReshi"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Terms of Service",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="BeckyReshi"
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardGallery
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Premium Food Products You Can Trust — Delivered with Excellence"
|
||||
description="At BeckyReshi Business Ventures, we supply high-quality food ingredients that bring rich taste, purity, and confidence to your kitchen."
|
||||
buttons={[{ text: "Order Now", href: "/products" }, { text: "Contact Us", href: "/contact" }]}
|
||||
mediaItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-vegetables_140725-35999.jpg", imageAlt: "Fresh food supply ingredients" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-carrots-plate_23-2148678873.jpg", imageAlt: "Quality ingredients showcase" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fresh-raw-eggplants-arrangement_23-2150317352.jpg", imageAlt: "Premium supply delivery" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fresh-vegetables-colorful-pasta-with-mushroom-garlic-pepper-white-surface_176474-312.jpg", imageAlt: "Fresh produce selection" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-vegetables-with-different-seasonings-greens-dark-blue-desk_140725-115244.jpg", imageAlt: "BeckyReshi ingredients" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/assortments-treats-halloween_23-2148603678.jpg", imageAlt: "Trusted food supplier" }
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="about-preview" data-section="about-preview">
|
||||
<SplitAbout
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Quality You Can Taste. Trust You Can Feel."
|
||||
description="BeckyReshi Business Ventures is a trusted food products supplier based in Abuja, committed to delivering only the finest quality ingredients to homes and businesses."
|
||||
bulletPoints={[
|
||||
{ title: "Quality Assured", description: "Every product is carefully sourced and quality-checked." },
|
||||
{ title: "Authentic Taste", description: "We bring rich, pure flavors to your kitchen." },
|
||||
{ title: "Reliable Service", description: "Delivering excellence with every order." }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/arrangement-delicious-autumn-fruits_23-2148634416.jpg"
|
||||
imageAlt="Authentic Nigerian cooking ingredients display"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonial" data-section="testimonial">
|
||||
<TestimonialCardFive
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sarah J.", date: "Oct 2023", title: "Loyal Customer", quote: "Your red oil is great for cooking all kinds of soups and tastes so great.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-female_23-2148480700.jpg", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-meat-soup-with-vegetables_140725-35999.jpg", imageAlt: "happy customer portrait Nigeria" },
|
||||
{ id: "2", name: "Michael C.", date: "Sep 2023", title: "Business Owner", quote: "A vendor you can definitely trust. Your resources are safe and value is guaranteed.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/girl-red-holding-bananas-fruits-store_627829-9465.jpg", imageSrc: "http://img.b2bpic.net/free-photo/oil-bubbles-floating-red-yellow-water-surface_23-2147876133.jpg", imageAlt: "happy customer portrait Nigeria" },
|
||||
{ id: "3", name: "Emily R.", date: "Aug 2023", title: "Happy Home", quote: "One of the best food vendors in Abuja — tested and trusted.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/woman-holding-bowl-dog-bones-shop_107420-95959.jpg", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-white-shirt-showing-ok-signs-looking-happy_176474-17426.jpg", imageAlt: "happy customer portrait Nigeria" },
|
||||
{ id: "4", name: "David K.", date: "Jul 2023", title: "Regular Buyer", quote: "Premium quality every single time. Simply the best.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/young-co-worker-spending-time-office_23-2149328310.jpg", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-carrots-plate_23-2148678873.jpg", imageAlt: "happy customer portrait Nigeria" },
|
||||
{ id: "5", name: "Fiona M.", date: "Jun 2023", title: "Daily Shopper", quote: "Reliable and consistent. Highly recommended!", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/fresh-raw-eggplants-arrangement_23-2150317352.jpg", imageSrc: "http://img.b2bpic.net/free-photo/fresh-vegetables-colorful-pasta-with-mushroom-garlic-pepper-white-surface_176474-312.jpg", imageAlt: "happy customer portrait Nigeria" }
|
||||
]}
|
||||
title="What Our Customers Say"
|
||||
description="Tested and trusted by families across Abuja."
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contact Us"
|
||||
title="Ready to get started?"
|
||||
description="Have questions about our supplies or bulk orders? Get in touch with our team today."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fried-caucasian-khinkali-with-herbs-black-pan_114579-34780.jpg"
|
||||
imageAlt="Fresh ingredients for cooking"
|
||||
mediaAnimation="slide-up"
|
||||
inputPlaceholder="Enter your email for inquiries"
|
||||
buttonText="Send Message"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="BeckyReshi"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -7,117 +7,65 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ProductsPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Products",
|
||||
id: "/products",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="BeckyReshi"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Best Sellers"
|
||||
description="Pure, natural ingredients delivered with care."
|
||||
plans={[
|
||||
{
|
||||
id: "p1",
|
||||
badge: "Popular",
|
||||
price: "₦2,500",
|
||||
subtitle: "Premium Palm Oil (1L)",
|
||||
features: [
|
||||
"Pure extraction",
|
||||
"No additives",
|
||||
"Natural aroma",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
badge: "Essential",
|
||||
price: "₦1,800",
|
||||
subtitle: "Dry Ground Crayfish (500g)",
|
||||
features: [
|
||||
"Sun-dried",
|
||||
"Rich protein",
|
||||
"Finely ground",
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Cooking Tips & Updates"
|
||||
description="Get the best out of our ingredients with these helpful guides."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Cooking",
|
||||
title: "How to identify pure red oil",
|
||||
excerpt: "Learn the tricks of the trade to ensure you are buying real, unprocessed oil.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-autumn-vegetables-with-olive-oil_23-2148294629.jpg",
|
||||
authorName: "Rebecca R.",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-food_23-2149536952.jpg",
|
||||
date: "Nov 2023",
|
||||
},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Ingredients",
|
||||
title: "The benefit of sun-dried crayfish",
|
||||
excerpt: "Why sun-dried ingredients hold more nutrients than kiln-dried alternatives.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/healthy-fresh-vegetables-dinner-close-up-photo-dark-background-studio_482257-45415.jpg",
|
||||
authorName: "Tunde A.",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/indoor-shot-smiling-black-unshaven-male-shirt-sitting-wooden-chair-cafe-drinking-hot-coffee-cappuccino-looking-someone-with-smile-while-having-pleasant-talk-with-friend_273609-480.jpg",
|
||||
date: "Oct 2023",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="BeckyReshi"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Terms of Service",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Products", id: "/products" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="BeckyReshi"
|
||||
/>
|
||||
</div>
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Best Sellers"
|
||||
description="Pure, natural ingredients delivered with care."
|
||||
plans={[
|
||||
{ id: "p1", badge: "Popular", price: "₦2,500", subtitle: "Premium Palm Oil (1L)", features: ["Pure extraction", "No additives", "Natural aroma"] },
|
||||
{ id: "p2", badge: "Essential", price: "₦1,800", subtitle: "Dry Ground Crayfish (500g)", features: ["Sun-dried", "Rich protein", "Finely ground"] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="blog" data-section="blog">
|
||||
<BlogCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Cooking Tips & Updates"
|
||||
description="Get the best out of our ingredients with these helpful guides."
|
||||
blogs={[
|
||||
{ id: "b1", category: "Cooking", title: "How to identify pure red oil", excerpt: "Learn the tricks of the trade to ensure you are buying real, unprocessed oil.", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-autumn-vegetables-with-olive-oil_23-2148294629.jpg", authorName: "Rebecca R.", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-with-food_23-2149536952.jpg", date: "Nov 2023" },
|
||||
{ id: "b2", category: "Ingredients", title: "The benefit of sun-dried crayfish", excerpt: "Why sun-dried ingredients hold more nutrients than kiln-dried alternatives.", imageSrc: "http://img.b2bpic.net/free-photo/healthy-fresh-vegetables-dinner-close-up-photo-dark-background-studio_482257-45415.jpg", authorName: "Tunde A.", authorAvatar: "http://img.b2bpic.net/free-photo/indoor-shot-smiling-black-unshaven-male-shirt-sitting-wooden-chair-cafe-drinking-hot-coffee-cappuccino-looking-someone-with-smile-while-having-pleasant-talk-with-friend_273609-480.jpg", date: "Oct 2023" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="BeckyReshi"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user