Update src/app/products/page.tsx

This commit is contained in:
2026-04-11 11:13:09 +00:00
parent 7b53c76ae6
commit e58d29d7c7

View File

@@ -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>
);