Update src/app/menu/page.tsx
This commit is contained in:
@@ -7,171 +7,55 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Bulk Orders",
|
||||
id: "/bulk-orders",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Seafood and Eat It"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="menu-grid" data-section="menu-grid">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Fish",
|
||||
name: "Fish Cocktails",
|
||||
price: "$12.00",
|
||||
rating: 5,
|
||||
reviewCount: "50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-raw-fish-slices-black-board-dill-pomegranate-seeds-tomatoes-knife-pepper-grinder-table-copy-place_179666-46520.jpg",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Sides",
|
||||
name: "Potato Scallops",
|
||||
price: "$2.50",
|
||||
rating: 5,
|
||||
reviewCount: "80",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-breaded-chicken-with-herbs-bowl-with-lemon-cream-sauce-wood-board-rustic_141793-11088.jpg",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Prawns",
|
||||
name: "Prawn Cutlets",
|
||||
price: "$14.00",
|
||||
rating: 5,
|
||||
reviewCount: "40",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-shrimps-with-sliced-lemon-peppercorns-greaseproof-paper_114579-43065.jpg",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Fish",
|
||||
name: "Hoki & Chips",
|
||||
price: "$18.00",
|
||||
rating: 4,
|
||||
reviewCount: "60",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/seafood-cleaning-process-kitchen_23-2150171367.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Family",
|
||||
name: "Family Seafood Pack",
|
||||
price: "$55.00",
|
||||
rating: 5,
|
||||
reviewCount: "30",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tasty-seafood-table_23-2149410759.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Calamari",
|
||||
name: "Calamari Rings",
|
||||
price: "$10.00",
|
||||
rating: 4,
|
||||
reviewCount: "90",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sea-prawns-sprinkled-with-lemon-juice_140725-9723.jpg",
|
||||
},
|
||||
]}
|
||||
title="Full Seafood Menu"
|
||||
description="Everything from fresh fish cocktails to family packs."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Today's Specials"
|
||||
description="Limited time offers and chef recommendations."
|
||||
products={[
|
||||
{
|
||||
id: "s1",
|
||||
name: "Fresh Caught Snapper",
|
||||
price: "$22.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-mackerel-steak_1339-6207.jpg",
|
||||
},
|
||||
{
|
||||
id: "s2",
|
||||
name: "Calamari Basket",
|
||||
price: "$15.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crispy-fried-calamari-rings_123827-36413.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Seafood and Eat It"
|
||||
columns={[
|
||||
{
|
||||
title: "Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Bulk Orders",
|
||||
href: "/bulk-orders",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "Call Us",
|
||||
href: "tel:0247000000",
|
||||
},
|
||||
{
|
||||
label: "Visit Us",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "Bulk Orders", id: "/bulk-orders" }, { name: "About", id: "/about" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Seafood and Eat It"
|
||||
/>
|
||||
</div>
|
||||
<div id="menu-grid" data-section="menu-grid">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={true}
|
||||
title="Full Seafood Menu"
|
||||
description="Everything from fresh fish cocktails to family packs."
|
||||
products={[{ id: "p1", brand: "Fish", name: "Fish Cocktails", price: "$12.00", rating: 5, reviewCount: "50", imageSrc: "http://img.b2bpic.net/free-photo/top-view-raw-fish-slices-black-board-dill-pomegranate-seeds-tomatoes-knife-pepper-grinder-table-copy-place_179666-46520.jpg" }, { id: "p2", brand: "Sides", name: "Potato Scallops", price: "$2.50", rating: 5, reviewCount: "80", imageSrc: "http://img.b2bpic.net/free-photo/side-view-breaded-chicken-with-herbs-bowl-with-lemon-cream-sauce-wood-board-rustic_141793-11088.jpg" }, { id: "p3", brand: "Prawns", name: "Prawn Cutlets", price: "$14.00", rating: 5, reviewCount: "40", imageSrc: "http://img.b2bpic.net/free-photo/delicious-shrimps-with-sliced-lemon-peppercorns-greaseproof-paper_114579-43065.jpg" }, { id: "p4", brand: "Fish", name: "Hoki & Chips", price: "$18.00", rating: 4, reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/seafood-cleaning-process-kitchen_23-2150171367.jpg" }, { id: "p5", brand: "Family", name: "Family Seafood Pack", price: "$55.00", rating: 5, reviewCount: "30", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-tasty-seafood-table_23-2149410759.jpg" }, { id: "p6", brand: "Calamari", name: "Calamari Rings", price: "$10.00", rating: 4, reviewCount: "90", imageSrc: "http://img.b2bpic.net/free-photo/sea-prawns-sprinkled-with-lemon-juice_140725-9723.jpg" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="product" data-section="product">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Today's Specials"
|
||||
description="Limited time offers and chef recommendations."
|
||||
products={[{ id: "s1", name: "Fresh Caught Snapper", price: "$22.00", imageSrc: "http://img.b2bpic.net/free-photo/fresh-mackerel-steak_1339-6207.jpg" }, { id: "s2", name: "Calamari Basket", price: "$15.00", imageSrc: "http://img.b2bpic.net/free-photo/crispy-fried-calamari-rings_123827-36413.jpg" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Seafood and Eat It"
|
||||
columns={[{ title: "Links", items: [{ label: "Menu", href: "/menu" }, { label: "Bulk Orders", href: "/bulk-orders" }, { label: "About", href: "/about" }] }, { title: "Contact", items: [{ label: "Call Us", href: "tel:0247000000" }, { label: "Visit Us", href: "/contact" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user