2 Commits

Author SHA1 Message Date
63f20d6fe3 Update src/app/menu/page.tsx 2026-04-07 00:52:42 +00:00
19d4a94c72 Merge version_1 into main
Merge version_1 into main
2026-04-07 00:49:06 +00:00

View File

@@ -7,7 +7,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
export default function LandingPage() { export default function MenuPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-shift" defaultButtonVariant="text-shift"
@@ -25,22 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "Menu", id: "/menu" },
id: "/", { name: "About", id: "/about" },
}, { name: "Contact", id: "/contact" },
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
]} ]}
brandName="Kazoku Sushi" brandName="Kazoku Sushi"
/> />
@@ -53,44 +41,17 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid" gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false} useInvertedBackground={false}
products={[ products={[
{ { id: "p1", name: "Volcano Roll", price: "$16.00", variant: "House Favorite", imageSrc: "http://img.b2bpic.net/free-photo/sushi-set-with-salmon-rice_140725-5519.jpg?_wi=2" },
id: "p1", { id: "p2", name: "Mango Crunch Roll", price: "$14.00", variant: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/side-view-sushi-set-dark-plate_176474-3231.jpg?_wi=2" },
name: "Volcano Roll", { id: "p3", name: "Spicy Tuna Roll", price: "$12.00", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/boiled-eggs-with-orange-caviar_140725-922.jpg?_wi=2" },
price: "$16.00", { id: "p4", name: "Dragon Roll", price: "$17.00", variant: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/sushi-different-types-wooden-stand-delivery-lunch-dinner_132075-14360.jpg?_wi=2" },
variant: "House Favorite", { id: "p5", name: "California Roll", price: "$10.00", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/sushi-set-with-salmon-rice_140725-5519.jpg?_wi=2" },
imageSrc: "http://img.b2bpic.net/free-photo/sushi-set-with-salmon-rice_140725-5519.jpg?_wi=2", { id: "p6", name: "Deluxe Bento Box", price: "$22.00", variant: "Lunch Special", imageSrc: "http://img.b2bpic.net/free-photo/sushi-different-types-wooden-stand-delivery-lunch-dinner_132075-14360.jpg?_wi=2" },
}, { id: "p7", name: "Tempura Appetizer", price: "$9.00", variant: "Hot Dish", imageSrc: "http://img.b2bpic.net/free-photo/hanging-glass-lamp-light-vintage_1203-5789.jpg" },
{ { id: "p8", name: "Miso Soup", price: "$4.00", variant: "Starter", imageSrc: "http://img.b2bpic.net/free-photo/boiled-eggs-with-orange-caviar_140725-922.jpg?_wi=2" }
id: "p2",
name: "Mango Crunch Roll",
price: "$14.00",
variant: "Signature",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-sushi-set-dark-plate_176474-3231.jpg?_wi=2",
},
{
id: "p3",
name: "Spicy Tuna Roll",
price: "$12.00",
variant: "Classic",
imageSrc: "http://img.b2bpic.net/free-photo/boiled-eggs-with-orange-caviar_140725-922.jpg?_wi=2",
},
{
id: "p4",
name: "Deluxe Bento Box",
price: "$22.00",
variant: "Lunch Special",
imageSrc: "http://img.b2bpic.net/free-photo/sushi-different-types-wooden-stand-delivery-lunch-dinner_132075-14360.jpg?_wi=2",
},
{
id: "p5",
name: "Tempura Appetizer",
price: "$9.00",
variant: "Hot Dish",
imageSrc: "http://img.b2bpic.net/free-photo/hanging-glass-lamp-light-vintage_1203-5789.jpg",
},
]} ]}
title="Our Menu" title="Our Full Menu"
description="Discover a blend of traditional and modern sushi creations." description="A complete selection of our traditional rolls, fresh sashimi, and signature bento boxes."
/> />
</div> </div>
@@ -99,19 +60,12 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
title="Menu FAQs" title="Menu FAQs"
description="Common questions about our ingredients and dietary options." description="Questions about our ingredients and dietary options."
faqsAnimation="opacity" faqsAnimation="opacity"
faqs={[ faqs={[
{ { id: "m1", title: "Are your ingredients organic?", content: "We source as much local and organic produce as possible." },
id: "m1", { id: "m2", title: "How do I see allergen information?", content: "Please ask your server for a detailed allergen guide." },
title: "Are your ingredients organic?", { id: "m3", title: "Do you offer vegan rolls?", content: "Yes, we have a selection of vegetable-based rolls including our signature Avocado and Cucumber rolls." }
content: "We source as much local and organic produce as possible.",
},
{
id: "m2",
title: "How do I see allergen information?",
content: "Please ask your server for a detailed allergen guide.",
},
]} ]}
/> />
</div> </div>
@@ -125,4 +79,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }