5 Commits

Author SHA1 Message Date
39d9441af3 Update src/app/layout.tsx 2026-03-08 06:47:08 +00:00
9033e5ae29 Add src/app/products/page.tsx 2026-03-08 06:46:21 +00:00
01b90c3b37 Update src/app/page.tsx 2026-03-08 06:46:21 +00:00
34df91559e Update src/app/layout.tsx 2026-03-08 06:46:20 +00:00
e7e3f1674f Merge version_2 into main
Merge version_2 into main
2026-03-08 06:29:19 +00:00
3 changed files with 85 additions and 1404 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -33,7 +33,7 @@ export default function LandingPage() {
navItems={[ navItems={[
{ name: "Home", id: "home" }, { name: "Home", id: "home" },
{ name: "About", id: "about" }, { name: "About", id: "about" },
{ name: "Products", id: "products" }, { name: "Products", id: "/products" },
{ name: "Why Choose Us", id: "quality" }, { name: "Why Choose Us", id: "quality" },
{ name: "Contact", id: "contact" } { name: "Contact", id: "contact" }
]} ]}
@@ -55,7 +55,7 @@ export default function LandingPage() {
{ imageSrc: "http://img.b2bpic.net/free-psd/healthy-dog-food-poster-template_23-2148457500.jpg", imageAlt: "Bari-Jay premium packaging" } { imageSrc: "http://img.b2bpic.net/free-psd/healthy-dog-food-poster-template_23-2148457500.jpg", imageAlt: "Bari-Jay premium packaging" }
]} ]}
buttons={[ buttons={[
{ text: "Shop Now", href: "products" }, { text: "Shop Now", href: "/products" },
{ text: "Learn More", href: "about" } { text: "Learn More", href: "about" }
]} ]}
mediaAnimation="slide-up" mediaAnimation="slide-up"

64
src/app/products/page.tsx Normal file
View File

@@ -0,0 +1,64 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="small"
sizing="medium"
background="noiseDiagonalGradient"
cardStyle="soft-shadow"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Bari-Jay"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Products", id: "/products" },
{ name: "Why Choose Us", id: "quality" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Order Now", href: "contact" }}
/>
</div>
<div id="products" data-section="products">
<ProductCardFour
title="Our Premium Product Range"
description="Carefully curated selection of fresh dog food and quality accessories for your pet's wellbeing. All products are sourced with premium quality standards and delivered fresh to your doorstep."
tag="Fresh & Quality"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "1", name: "Broken dog rice", price: "From KES 800", variant: "Fresh Ground • High Protein", imageSrc: "http://img.b2bpic.net/free-photo/raw-meat-with-spices-herbs-table_1220-7556.jpg", imageAlt: "Crushed beef dog food" },
{ id: "2", name: "Fresh Chicken Variety", price: "From KES 750", variant: "Chicken Parts • Complete Nutrition", imageSrc: "http://img.b2bpic.net/free-photo/roast-chicken-with-sweet-pepper-berry-rice_1339-3199.jpg", imageAlt: "Fresh chicken dog food" },
{ id: "3", name: "Premium Pork Selection", price: "From KES 850", variant: "Quality Pork • Essential Nutrients", imageSrc: "http://img.b2bpic.net/free-photo/close-up-burger-meat-veggies_23-2148517677.jpg", imageAlt: "Premium pork dog food" },
{ id: "4", name: "Mixed Meat Blend", price: "From KES 900", variant: "Beef & Chicken • Complete Variety", imageSrc: "http://img.b2bpic.net/free-photo/raw-meat-with-spices-herbs-table_1220-7556.jpg", imageAlt: "Mixed meat dog food" }
]}
gridVariant="two-columns-alternating-heights"
animationType="blur-reveal"
carouselMode="buttons"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Bari-Jay"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ThemeProvider>
);
}