Update src/app/menu/page.tsx
This commit is contained in:
@@ -26,28 +26,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Order",
|
||||
id: "/order",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Order", id: "/order" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Java Cafe"
|
||||
button={{ text: "Order Now", href: "/order" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -58,48 +44,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Espresso Roast",
|
||||
price: "$3.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ceramic-cups-coffee-machine_23-2147830564.jpg?_wi=2",
|
||||
imageAlt: "Espresso cup",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Latte Supreme",
|
||||
price: "$4.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-collage-with-plant_23-2151876150.jpg?_wi=2",
|
||||
imageAlt: "Latte art",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Cappuccino",
|
||||
price: "$4.75",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-coffee-with-milk_23-2148337185.jpg?_wi=2",
|
||||
imageAlt: "Cappuccino",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Dark Chocolate Tart",
|
||||
price: "$5.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/sweet-dessert-custard-tart-with-raspberry-top_74190-6069.jpg?_wi=2",
|
||||
imageAlt: "Chocolate tart",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Almond Croissant",
|
||||
price: "$3.75",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-croissant-with-coffee_23-2148337181.jpg?_wi=2",
|
||||
imageAlt: "Almond croissant",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Blueberry Muffin",
|
||||
price: "$3.25",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fresh-homemade-delicious-blueberry-muffins_114579-49441.jpg",
|
||||
imageAlt: "Blueberry muffin",
|
||||
},
|
||||
{ id: "p1", name: "Espresso Roast", price: "$3.50", imageSrc: "http://img.b2bpic.net/free-photo/ceramic-cups-coffee-machine_23-2147830564.jpg", imageAlt: "Espresso cup" },
|
||||
{ id: "p2", name: "Latte Supreme", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/coffee-collage-with-plant_23-2151876150.jpg", imageAlt: "Latte art" },
|
||||
{ id: "p3", name: "Cappuccino", price: "$4.75", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cup-coffee-with-milk_23-2148337185.jpg", imageAlt: "Cappuccino" },
|
||||
{ id: "p4", name: "Dark Chocolate Tart", price: "$5.00", imageSrc: "http://img.b2bpic.net/free-photo/sweet-dessert-custard-tart-with-raspberry-top_74190-6069.jpg", imageAlt: "Chocolate tart" },
|
||||
{ id: "p5", name: "Almond Croissant", price: "$3.75", imageSrc: "http://img.b2bpic.net/free-photo/top-view-croissant-with-coffee_23-2148337181.jpg", imageAlt: "Almond croissant" },
|
||||
{ id: "p6", name: "Blueberry Muffin", price: "$3.25", imageSrc: "http://img.b2bpic.net/free-photo/fresh-homemade-delicious-blueberry-muffins_114579-49441.jpg", imageAlt: "Blueberry muffin" },
|
||||
]}
|
||||
title="Our Signature Menu"
|
||||
description="Handcrafted coffee blends, signature drinks, and fresh daily pastries."
|
||||
@@ -115,20 +65,8 @@ export default function LandingPage() {
|
||||
title="Quality Stats"
|
||||
description="See the precision in our menu items."
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "20",
|
||||
title: "Drink Types",
|
||||
description: "Crafted daily",
|
||||
icon: Coffee,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "10",
|
||||
title: "Pastry Types",
|
||||
description: "Freshly baked",
|
||||
icon: Cookie,
|
||||
},
|
||||
{ id: "1", value: "20", title: "Drink Types", description: "Crafted daily", icon: Coffee },
|
||||
{ id: "2", value: "10", title: "Pastry Types", description: "Freshly baked", icon: Cookie },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -136,53 +74,9 @@ export default function LandingPage() {
|
||||
<div id="footer-main" data-section="footer-main">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Navigate",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Order",
|
||||
href: "/order",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Twitter",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "Order", href: "/order" }] },
|
||||
{ title: "Social", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "Twitter", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Java Cafe Inc."
|
||||
bottomRightText="Crafted with love"
|
||||
|
||||
Reference in New Issue
Block a user