6 Commits

Author SHA1 Message Date
fbf939b5de Update src/app/page.tsx 2026-03-07 20:59:37 +00:00
db0b78eb5f Update src/app/layout.tsx 2026-03-07 20:59:36 +00:00
db18f6f9da Merge version_2 into main
Merge version_2 into main
2026-03-07 20:56:38 +00:00
458c5831d0 Add src/app/products/page.tsx 2026-03-07 20:56:34 +00:00
c75c6fe0a4 Update src/app/page.tsx 2026-03-07 20:56:34 +00:00
7f0fa1967f Merge version_1 into main
Merge version_1 into main
2026-03-07 20:49:24 +00:00
3 changed files with 105 additions and 1402 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -29,10 +29,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Reservations", id: "contact" },
{ name: "Products", id: "/products" },
{ name: "Contact", id: "contact" }
]}
brandName="Tofu & Thai"
@@ -61,7 +61,7 @@ export default function LandingPage() {
rating={5}
ratingText="Trusted by food lovers"
buttons={[
{ text: "Make Reservation", href: "#contact" },
{ text: "Reserve Table Now", href: "#contact" },
{ text: "View Menu", href: "#menu" }
]}
buttonAnimation="slide-up"

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

@@ -0,0 +1,96 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { ShoppingCart, UtensilsCrossed } from 'lucide-react';
export default function ProductsPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumLargeSizeLargeTitles"
background="blurBottom"
cardStyle="inset"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Products", id: "/products" },
{ name: "Contact", id: "contact" }
]}
brandName="Tofu & Thai"
bottomLeftText="Authentic Asian Cuisine"
bottomRightText="hello@tofuthai.com"
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
title="Our Complete Product Range"
description="Explore our full selection of premium tofu dishes, fresh ingredients, and authentic Thai specialties"
tag="All Products"
tagIcon={ShoppingCart}
products={[
{
id: "1", name: "Pad Thai with Tofu", price: "$12.99", imageSrc: "http://img.b2bpic.net/free-photo/fresh-shrimp-soaked-fish-sauce-thai-food_1150-22761.jpg?_wi=2", imageAlt: "Pad Thai with tofu"
},
{
id: "2", name: "Green Curry Tofu", price: "$13.99", imageSrc: "http://img.b2bpic.net/free-photo/green-curry-bowl-wooden-table_1150-21356.jpg?_wi=2", imageAlt: "Green curry tofu"
},
{
id: "3", name: "Spring Rolls", price: "$8.99", imageSrc: "http://img.b2bpic.net/free-photo/crepe-with-meat-table_140725-2370.jpg?_wi=2", imageAlt: "Crispy spring rolls"
},
{
id: "4", name: "Tom Yum Soup", price: "$11.99", imageSrc: "http://img.b2bpic.net/free-photo/fresh-shrimp-soaked-fish-sauce-thai-food_1150-22761.jpg?_wi=2", imageAlt: "Tom Yum Soup"
},
{
id: "5", name: "Massaman Curry", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-photo/green-curry-bowl-wooden-table_1150-21356.jpg?_wi=2", imageAlt: "Massaman Curry"
},
{
id: "6", name: "Crispy Fried Tofu", price: "$9.99", imageSrc: "http://img.b2bpic.net/free-photo/crepe-with-meat-table_140725-2370.jpg?_wi=2", imageAlt: "Crispy Fried Tofu"
}
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
useInvertedBackground={false}
textboxLayout="default"
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Ready to Order"
tagIcon={UtensilsCrossed}
title="Place Your Order Today"
description="Reserve your favorites or place a bulk order for your next event. Our team is ready to serve you with the finest authentic Thai cuisine and premium tofu creations."
buttons={[
{ text: "Make Reservation", href: "tel:+1-555-0123" },
{ text: "Get Directions", href: "#" }
]}
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Tofu & Thai"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ThemeProvider>
);
}