Update src/app/menu/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
@@ -25,24 +25,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menù",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Il Locale",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Prenota",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menù", id: "/menu" },
|
||||
{ name: "Il Locale", id: "/about" },
|
||||
{ name: "Prenota", id: "/contact" },
|
||||
]}
|
||||
brandName="L'Acquolina"
|
||||
button={{ text: "Prenota", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -53,120 +42,25 @@ export default function LandingPage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Pranzo di Lavoro",
|
||||
price: "13 €",
|
||||
variant: "Primo + Secondo + Contorno",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=9",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Pizza Diavola",
|
||||
price: "9 €",
|
||||
variant: "Impasto sottile piccante",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=10",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Bistecca alla Griglia",
|
||||
price: "18 €",
|
||||
variant: "Carne selezionata",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=11",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Fettuccine ai Funghi",
|
||||
price: "12 €",
|
||||
variant: "Pasta fresca",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=12",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Dolce del Giorno",
|
||||
price: "6 €",
|
||||
variant: "Fatto in casa",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=13",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Tagliata",
|
||||
price: "16 €",
|
||||
variant: "Rucola e grana",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=14",
|
||||
},
|
||||
{ id: "p1", name: "Pranzo di Lavoro", price: "13 €", variant: "Primo + Secondo + Contorno", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
|
||||
{ id: "p2", name: "Pizza Diavola", price: "9 €", variant: "Impasto sottile piccante", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
|
||||
{ id: "p3", name: "Bistecca alla Griglia", price: "18 €", variant: "Carne selezionata", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
|
||||
{ id: "p4", name: "Fettuccine ai Funghi", price: "12 €", variant: "Pasta fresca", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
|
||||
{ id: "p5", name: "Dolce del Giorno", price: "6 €", variant: "Fatto in casa", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
|
||||
{ id: "p6", name: "Tagliata", price: "16 €", variant: "Rucola e grana", imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg" },
|
||||
]}
|
||||
title="Il Menù"
|
||||
description="Piatti che cambiano, qualità che resta."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardTwentyNine
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Ingredienti di Qualità"
|
||||
description="Selezioniamo solo il meglio per le nostre ricette quotidiane."
|
||||
features={[
|
||||
{
|
||||
title: "Pasta Fresca",
|
||||
description: "Fatta in casa ogni mattina con farina di alta qualità.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=15",
|
||||
titleIconSrc: "Utensils",
|
||||
buttonText: "Vedi piatti",
|
||||
},
|
||||
{
|
||||
title: "Carni Scelte",
|
||||
description: "Soltanto tagli selezionati e di provenienza garantita.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7823.jpg?_wi=16",
|
||||
titleIconSrc: "Beef",
|
||||
buttonText: "Vedi piatti",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
logoText="L'Acquolina In Bocca"
|
||||
columns={[
|
||||
{
|
||||
title: "Info",
|
||||
items: [
|
||||
{
|
||||
label: "Via Roma, 1, Milano",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "02 1234567",
|
||||
href: "tel:+39021234567",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Menù",
|
||||
items: [
|
||||
{
|
||||
label: "Pranzo di lavoro",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Specialità",
|
||||
href: "/menu",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Prenota",
|
||||
items: [
|
||||
{
|
||||
label: "Contattaci",
|
||||
href: "/contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Info", items: [{ label: "Via Roma, 1, Milano", href: "#" }, { label: "02 1234567", href: "tel:+39021234567" }] },
|
||||
{ title: "Menù", items: [{ label: "Pranzo di lavoro", href: "/menu" }, { label: "Specialità", href: "/menu" }] },
|
||||
{ title: "Prenota", items: [{ label: "Contattaci", href: "/contact" }] },
|
||||
]}
|
||||
copyrightText="© 2024 L'Acquolina In Bocca. Tutti i diritti riservati."
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user