32 Commits

Author SHA1 Message Date
5aafc4ceba Update src/app/products/page.tsx 2026-04-09 02:04:51 +00:00
8e197e6d50 Update src/app/page.tsx 2026-04-09 02:04:50 +00:00
dac1bd6052 Add src/app/products/page.tsx 2026-04-09 02:04:27 +00:00
c19b4522a9 Update src/app/page.tsx 2026-04-09 02:04:26 +00:00
4355703ba8 Update src/app/about/page.tsx 2026-04-09 02:04:26 +00:00
69a42ff8d7 Merge version_4 into main
Merge version_4 into main
2026-04-08 02:12:57 +00:00
1cccf78e41 Update src/app/page.tsx 2026-04-08 02:12:54 +00:00
582a6b6af0 Merge version_4 into main
Merge version_4 into main
2026-04-07 18:43:21 +00:00
e4358312dd Update src/app/page.tsx 2026-04-07 18:43:18 +00:00
e37a59d791 Merge version_4 into main
Merge version_4 into main
2026-04-07 18:42:58 +00:00
6a00a498b5 Update src/app/page.tsx 2026-04-07 18:42:51 +00:00
aac1cc96b0 Merge version_4 into main
Merge version_4 into main
2026-04-07 18:42:18 +00:00
582a987f92 Update src/app/page.tsx 2026-04-07 18:42:15 +00:00
ad519dc450 Update src/app/about/page.tsx 2026-04-07 18:42:15 +00:00
145364d242 Merge version_3 into main
Merge version_3 into main
2026-04-07 18:40:38 +00:00
4dee50521c Update src/app/page.tsx 2026-04-07 18:40:35 +00:00
e1a41a0acd Merge version_3 into main
Merge version_3 into main
2026-04-07 18:39:27 +00:00
570b564c91 Update src/app/page.tsx 2026-04-07 18:39:24 +00:00
e66d474b60 Merge version_3 into main
Merge version_3 into main
2026-04-07 18:39:20 +00:00
e96a3f44bb Update src/app/page.tsx 2026-04-07 18:39:17 +00:00
66a203ef5e Merge version_3 into main
Merge version_3 into main
2026-04-07 18:38:44 +00:00
20bcb040fc Update src/app/page.tsx 2026-04-07 18:38:41 +00:00
03932c0664 Merge version_3 into main
Merge version_3 into main
2026-04-07 18:27:02 +00:00
35c08ed9c7 Update src/app/page.tsx 2026-04-07 18:26:59 +00:00
922e9483d3 Merge version_3 into main
Merge version_3 into main
2026-04-07 05:10:28 +00:00
9410181587 Update src/app/page.tsx 2026-04-07 05:10:22 +00:00
f72809f915 Merge version_3 into main
Merge version_3 into main
2026-04-07 05:01:40 +00:00
434c7b3a00 Update src/app/page.tsx 2026-04-07 05:01:37 +00:00
18fb906494 Merge version_2 into main
Merge version_2 into main
2026-04-07 04:57:52 +00:00
3f892d9316 Update src/app/page.tsx 2026-04-07 04:57:49 +00:00
088c6b922f Merge version_1 into main
Merge version_1 into main
2026-04-07 04:53:26 +00:00
6f7186e3f9 Merge version_1 into main
Merge version_1 into main
2026-04-07 04:45:54 +00:00
3 changed files with 137 additions and 332 deletions

View File

@@ -7,7 +7,7 @@ import FooterSimple from '@/components/sections/footer/FooterSimple';
import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
@@ -25,14 +25,9 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Products", id: "/products" },
]}
brandName="Tess's Kitchen"
/>
@@ -42,6 +37,7 @@ export default function LandingPage() {
<MediaAbout
useInvertedBackground={false}
title="Our Story"
titleClassName="text-5xl md:text-7xl lg:text-8xl"
description="At Tesss Kitchen, every recipe is inspired by Filipino tradition, family gatherings, and the joy of sharing food. Tess started baking in her small kusina, sharing her creations with friends and family before turning her passion into a beloved local bakery."
imageSrc="http://img.b2bpic.net/free-photo/happy-family-brunette-female-handsome-male-fleece-shirt-cute-little-girl-cooking-food-home-kitchen_613910-14639.jpg?_wi=2"
imageAlt="Tess in her kitchen"
@@ -51,18 +47,11 @@ export default function LandingPage() {
<div id="contact-cta" data-section="contact-cta">
<ContactCTA
useInvertedBackground={true}
background={{
variant: "radial-gradient",
}}
background={{ variant: "radial-gradient" }}
tag="Ready to order?"
title="Order for your next handaan!"
description="Send us a message to reserve your favorite treats for your upcoming celebrations."
buttons={[
{
text: "Contact Us",
href: "#",
},
]}
buttons={[{ text: "Contact Us", href: "#" }]}
/>
</div>
@@ -70,29 +59,16 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Tess's Kitchen",
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
title: "Tess's Kitchen", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Products", href: "/products" },
],
},
{
title: "Follow Us",
items: [
{
label: "Facebook",
href: "#",
},
{
label: "Instagram",
href: "#",
},
title: "Follow Us", items: [
{ label: "Facebook", href: "#" },
{ label: "Instagram", href: "#" },
],
},
]}

View File

@@ -2,13 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
export default function LandingPage() {
return (
@@ -28,14 +26,9 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Products", id: "/products" },
]}
brandName="Tess's Kitchen"
/>
@@ -43,109 +36,41 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDoubleCarousel
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
title="Freshly Baked Filipino Favorites, Made with Love"
description="Bringing the taste of home to your table—one bite at a time."
description=" located at 1348 E Florence Blvd #2, Casa Grande, AZ 85122"
leftCarouselItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-alfajores-with-copy-space_23-2148740232.jpg?_wi=1",
imageAlt: "Fresh bread 1",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/toothsome-cookie-grape-tray-marble-surface_114579-79948.jpg?_wi=1",
imageAlt: "Ube cake",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/basket-filled-baking-bread_329181-13308.jpg?_wi=1",
imageAlt: "Pandesal",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/front-view-badambura-eastern-sweetie-with-sweet-walnuts-inside-white-plate-sugar-powder-inside-white-plate-cookie-pastry-bakery_140725-15743.jpg?_wi=1",
imageAlt: "Ensaymada",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/strawberry-pie-black-metallic-pan_114579-61913.jpg?_wi=1",
imageAlt: "Leche flan",
},
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586028607-z6btk7tk.jpg", imageAlt: "Fresh bread 1" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586039770-weby0sj9.jpg?_wi=1", imageAlt: "Ube cake" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586039770-weby0sj9.jpg?_wi=2", imageAlt: "Pandesal" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586004740-pvx21mrg.jpg", imageAlt: "Ensaymada" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586264980-2rrp2fod.jpg", imageAlt: "Leche flan" },
]}
rightCarouselItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/basket-filled-baking-bread_329181-13308.jpg?_wi=2",
imageAlt: "Pandesal",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/front-view-badambura-eastern-sweetie-with-sweet-walnuts-inside-white-plate-sugar-powder-inside-white-plate-cookie-pastry-bakery_140725-15743.jpg?_wi=2",
imageAlt: "Ensaymada",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/strawberry-pie-black-metallic-pan_114579-61913.jpg?_wi=2",
imageAlt: "Leche flan",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-alfajores-with-copy-space_23-2148740232.jpg?_wi=2",
imageAlt: "Fresh bread 3",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/toothsome-cookie-grape-tray-marble-surface_114579-79948.jpg?_wi=2",
imageAlt: "Ube cake 2",
},
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586104191-qd922sr2.jpg", imageAlt: "Pandesal" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586351742-nkg78jid.jpg", imageAlt: "Ensaymada" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586341729-xn5d89ng.jpg", imageAlt: "Leche flan" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586076905-8aql84gr.jpg", imageAlt: "Fresh bread 3" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586294245-nz1ypegd.jpg", imageAlt: "Ube cake 2" },
]}
buttons={[
{
text: "Order Now",
href: "#",
},
{
text: "View Menu",
href: "#",
},
{ text: "Order Now", href: "#" },
{ text: "View Products", href: "/products" },
]}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/happy-woman-eating-cupcakes-table-having-fun_171337-14504.jpg",
alt: "Customer 1",
},
{
src: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25270.jpg",
alt: "Customer 2",
},
{
src: "http://img.b2bpic.net/free-photo/smiling-baker-placing-baked-buns-shelf_1170-2289.jpg",
alt: "Customer 3",
},
{
src: "http://img.b2bpic.net/free-photo/smiling-young-indian-woman-loving-dessert_1262-5797.jpg",
alt: "Customer 4",
},
{
src: "http://img.b2bpic.net/free-photo/close-up-young-women-man-smiling_23-2148431309.jpg",
alt: "Customer 5",
},
{ src: "http://img.b2bpic.net/free-photo/happy-woman-eating-cupcakes-table-having-fun_171337-14504.jpg", alt: "Customer 1" },
{ src: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25270.jpg", alt: "Customer 2" },
{ src: "http://img.b2bpic.net/free-photo/smiling-baker-placing-baked-buns-shelf_1170-2289.jpg", alt: "Customer 3" },
{ src: "http://img.b2bpic.net/free-photo/smiling-young-indian-woman-loving-dessert_1262-5797.jpg", alt: "Customer 4" },
{ src: "http://img.b2bpic.net/free-photo/close-up-young-women-man-smiling_23-2148431309.jpg", alt: "Customer 5" },
]}
avatarText="Loved by over 500 happy families!"
marqueeItems={[
{
type: "text",
text: "Authentic",
},
{
type: "text",
text: "Handmade",
},
{
type: "text",
text: "Traditional",
},
{
type: "text",
text: "Fresh Daily",
},
{
type: "text",
text: "Filipino Pride",
},
{ type: "text", text: "Authentic" },
{ type: "text", text: "Handmade" },
{ type: "text", text: "Traditional" },
{ type: "text", text: "Fresh Daily" },
{ type: "text", text: "Filipino Pride" },
]}
/>
</div>
@@ -157,117 +82,18 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{
id: "1",
brand: "Te",
name: "Ube Cheesecake",
price: "",
rating: 5,
reviewCount: "120",
imageSrc: "http://img.b2bpic.net/free-photo/toothsome-cookie-grape-tray-marble-surface_114579-79948.jpg?_wi=3",
},
{
id: "2",
brand: "Te",
name: "Pandesal (6pcs)",
price: "",
rating: 5,
reviewCount: "250",
imageSrc: "http://img.b2bpic.net/free-photo/basket-filled-baking-bread_329181-13308.jpg?_wi=3",
},
{
id: "3",
brand: "Te",
name: "Ensaymada",
price: "",
rating: 5,
reviewCount: "180",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-badambura-eastern-sweetie-with-sweet-walnuts-inside-white-plate-sugar-powder-inside-white-plate-cookie-pastry-bakery_140725-15743.jpg?_wi=3",
},
{
id: "4",
brand: "Te",
name: "Leche Flan",
price: "",
rating: 5,
reviewCount: "95",
imageSrc: "http://img.b2bpic.net/free-photo/strawberry-pie-black-metallic-pan_114579-61913.jpg?_wi=3",
},
{
id: "5",
brand: "Te",
name: "Ube Cake",
price: "",
rating: 5,
reviewCount: "70",
imageSrc: "http://img.b2bpic.net/free-photo/toothsome-cookie-grape-tray-marble-surface_114579-79948.jpg?_wi=4",
},
{
id: "6",
brand: "Te",
name: "Assorted Bread",
price: "₱100",
rating: 5,
reviewCount: "110",
imageSrc: "http://img.b2bpic.net/free-photo/basket-filled-baking-bread_329181-13308.jpg?_wi=4",
},
{ id: "1", brand: "Te", name: "pan de ube ", price: "", rating: 5, reviewCount: "120", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586158443-y6cb1q81.jpg?_wi=1" },
{ id: "2", brand: "Te", name: "Pandesal (6pcs)", price: "", rating: 5, reviewCount: "250", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586183006-jrrzihd2.jpg?_wi=1" },
{ id: "3", brand: "Te", name: "binikal ", price: "", rating: 5, reviewCount: "180", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586221711-ylae7pax.jpg?_wi=1" },
{ id: "4", brand: "Te", name: "spanish bread ", price: "", rating: 5, reviewCount: "95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586235577-pshybbnc.jpg?_wi=1" },
{ id: "5", brand: "Te", name: "pan de coco ", price: "", rating: 5, reviewCount: "70", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775587040882-mwwctuhy.jpg?_wi=1" },
{ id: "6", brand: "Te", name: "", price: "", rating: 5, reviewCount: "110", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775587072572-mo8869xa.jpg?_wi=1" },
]}
title="Featured Favorites"
description="Try our signature baked goods!"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
textboxLayout="default"
useInvertedBackground={true}
testimonials={[
{
id: "1",
title: "Great flavor!",
quote: "Lasang bahay talaga!",
name: "Maria Santos",
role: "Customer",
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-eating-cupcakes-table-having-fun_171337-14504.jpg?_wi=1",
},
{
id: "2",
title: "Amazing pandesal",
quote: "Best pandesal in town!",
name: "Juan Dela Cruz",
role: "Customer",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25270.jpg",
},
{
id: "3",
title: "My favorite bakery",
quote: "The Ube cheesecake is heavenly.",
name: "Lola Rosa",
role: "Customer",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-baker-placing-baked-buns-shelf_1170-2289.jpg",
},
{
id: "4",
title: "Must try!",
quote: "So soft and authentic.",
name: "Elena Reyes",
role: "Customer",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-indian-woman-loving-dessert_1262-5797.jpg",
},
{
id: "5",
title: "Fiesta in every bite",
quote: "Perfect for all our handaan.",
name: "Benny P.",
role: "Customer",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-women-man-smiling_23-2148431309.jpg",
},
]}
title="What Our Neighbors Say"
description="Loved by the community!"
/>
</div>
<div id="metric" data-section="metric">
<MetricCardEleven
animationType="slide-up"
@@ -276,73 +102,11 @@ export default function LandingPage() {
title="By The Numbers"
description="Proudly serving our community with excellence."
metrics={[
{
id: "1",
value: "500+",
title: "Happy Customers",
description: "Served with warmth",
imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-eating-cupcakes-table-having-fun_171337-14504.jpg?_wi=2",
},
{
id: "2",
value: "15+",
title: "Years Baking",
description: "Traditional mastery",
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-brunette-female-handsome-male-fleece-shirt-cute-little-girl-cooking-food-home-kitchen_613910-14639.jpg?_wi=1",
},
{
id: "3",
value: "30+",
title: "Recipes",
description: "Filipino classics",
imageSrc: "http://img.b2bpic.net/free-photo/toothsome-cookie-grape-tray-marble-surface_114579-79948.jpg?_wi=5",
},
{
id: "4",
value: "5",
title: "Bakery Locations",
description: "Expanding our reach",
imageSrc: "http://img.b2bpic.net/free-photo/basket-filled-baking-bread_329181-13308.jpg?_wi=5",
},
{
id: "5",
value: "100%",
title: "Satisfaction",
description: "Guaranteed quality",
imageSrc: "http://img.b2bpic.net/free-photo/strawberry-pie-black-metallic-pan_114579-61913.jpg?_wi=4",
},
]}
/>
</div>
<div id="blog" data-section="blog">
<BlogCardOne
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Kitchen Stories"
description="Tips, news, and our favorite baking secrets."
blogs={[
{
id: "1",
category: "Bakery News",
title: "The Art of Pandesal",
excerpt: "Learn how we keep our pandesal soft and airy every day.",
imageSrc: "http://img.b2bpic.net/free-photo/basket-filled-baking-bread_329181-13308.jpg?_wi=6",
authorName: "Tess",
authorAvatar: "http://img.b2bpic.net/free-photo/happy-family-brunette-female-handsome-male-fleece-shirt-cute-little-girl-cooking-food-home-kitchen_613910-14639.jpg",
date: "Oct 20, 2024",
},
{
id: "2",
category: "Tips",
title: "Perfect Ube Recipes",
excerpt: "Uncovering the secret to the best purple yam flavor.",
imageSrc: "http://img.b2bpic.net/free-photo/toothsome-cookie-grape-tray-marble-surface_114579-79948.jpg?_wi=6",
authorName: "Tess",
authorAvatar: "http://img.b2bpic.net/free-photo/happy-family-brunette-female-handsome-male-fleece-shirt-cute-little-girl-cooking-food-home-kitchen_613910-14639.jpg",
date: "Oct 15, 2024",
},
{ id: "1", value: "100+ ", title: "Happy Customers", description: "Served with warmth", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775587190510-8hsazq0a.jpg" },
{ id: "2", value: "15+", title: "Years Baking", description: "Traditional mastery", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775587200831-fpodaplo.jpg" },
{ id: "3", value: "5+ ", title: "Recipes", description: "Filipino classics", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586205047-b5561x7b.jpg" },
{ id: "4", value: "1 ", title: "Bakery Locations", description: "Expanding our reach", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775587209494-2kdy0mrq.jpg" },
{ id: "1 ", value: "100%", title: "Satisfaction", description: "Guaranteed quality", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775587227779-lyteqbjm.jpg" },
]}
/>
</div>
@@ -351,29 +115,16 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Tess's Kitchen",
items: [
{
label: "Home",
href: "/",
},
{
label: "About",
href: "/about",
},
title: "Tess's Kitchen", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Products", href: "/products" },
],
},
{
title: "Follow Us",
items: [
{
label: "Facebook",
href: "#",
},
{
label: "Instagram",
href: "#",
},
title: "Follow Us", items: [
{ label: "Facebook", href: "#" },
{ label: "Instagram", href: "#" },
],
},
]}

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

@@ -0,0 +1,78 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="mediumLarge"
background="grid"
cardStyle="glass-depth"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Products", id: "/products" },
]}
brandName="Tess's Kitchen"
/>
</div>
<div id="products" data-section="products" className="py-20">
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
{ id: "1", brand: "Te", name: "pan de ube ", price: "", rating: 5, reviewCount: "120", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586158443-y6cb1q81.jpg?_wi=2" },
{ id: "2", brand: "Te", name: "Pandesal (6pcs)", price: "", rating: 5, reviewCount: "250", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586183006-jrrzihd2.jpg?_wi=2" },
{ id: "3", brand: "Te", name: "binikal ", price: "", rating: 5, reviewCount: "180", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586221711-ylae7pax.jpg?_wi=2" },
{ id: "4", brand: "Te", name: "spanish bread ", price: "", rating: 5, reviewCount: "95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775586235577-pshybbnc.jpg?_wi=2" },
{ id: "5", brand: "Te", name: "pan de coco ", price: "", rating: 5, reviewCount: "70", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775587040882-mwwctuhy.jpg?_wi=2" },
{ id: "6", brand: "Te", name: "", price: "", rating: 5, reviewCount: "110", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BdPJRqIgg8ngXJ9CfoPA8RvgIz/uploaded-1775587072572-mo8869xa.jpg?_wi=2" },
]}
title="Our Products"
description="Discover our full range of traditional Filipino baked treats."
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Tess's Kitchen", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Products", href: "/products" },
],
},
{
title: "Follow Us", items: [
{ label: "Facebook", href: "#" },
{ label: "Instagram", href: "#" },
],
},
]}
bottomLeftText="© 2024 Tess's Kitchen"
bottomRightText="All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}