Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 458c5831d0 | |||
| c75c6fe0a4 | |||
| 7f0fa1967f |
@@ -29,10 +29,10 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "/" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Menu", id: "menu" },
|
{ name: "Menu", id: "menu" },
|
||||||
{ name: "Reservations", id: "contact" },
|
{ name: "Products", id: "/products" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" }
|
||||||
]}
|
]}
|
||||||
brandName="Tofu & Thai"
|
brandName="Tofu & Thai"
|
||||||
|
|||||||
96
src/app/products/page.tsx
Normal file
96
src/app/products/page.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user