Add src/app/menu/page.tsx
This commit is contained in:
64
src/app/menu/page.tsx
Normal file
64
src/app/menu/page.tsx
Normal file
@@ -0,0 +1,64 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="compact"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="none"
|
||||
cardStyle="glass-depth"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{ name: "Inicio", id: "/" },
|
||||
{ name: "Carta", id: "#menu" },
|
||||
{ name: "Contacto", id: "/#contact" },
|
||||
]}
|
||||
brandName="Donna Sofia"
|
||||
/>
|
||||
|
||||
<div id="menu" data-section="menu" className="pt-32 pb-20">
|
||||
<ProductCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
title="Nuestra Carta Completa"
|
||||
description="Disfruta de la auténtica experiencia napolitana con nuestra selección artesanal."
|
||||
products={[
|
||||
{ id: "p1", brand: "Napoli", name: "Margherita", price: "12€", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cheese-pizza-with-basil-cherry-tomatoes_23-2148765286.jpg" },
|
||||
{ id: "p2", brand: "Napoli", name: "Verdure", price: "14€", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/scattered-pasta-with-pasta-meals-mushrooms-piece-sack_176474-6964.jpg" },
|
||||
{ id: "p3", brand: "Napoli", name: "Prosciutto", price: "15€", rating: 4, reviewCount: "92", imageSrc: "http://img.b2bpic.net/free-photo/delicious-veggie-food-wooden-background_23-2148305847.jpg" },
|
||||
{ id: "p4", brand: "Napoli", name: "Diavola", price: "14€", rating: 5, reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/close-up-melted-cheese-pizza_23-2149286881.jpg" },
|
||||
{ id: "p5", brand: "Napoli", name: "Bosco Reale", price: "18€", rating: 5, reviewCount: "250", imageSrc: "http://img.b2bpic.net/free-photo/sauces-near-pizza_23-2147772094.jpg" },
|
||||
{ id: "p6", brand: "Napoli", name: "Carbodama", price: "17€", rating: 5, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/cut-pizza-board_23-2147772132.jpg" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterBaseReveal
|
||||
logoText="Donna Sofia"
|
||||
columns={[
|
||||
{ title: "Contacto", items: [{ label: "966 16 88 38", href: "tel:966168838" }, { label: "donnasofia20@gmail.com", href: "mailto:donnasofia20@gmail.com" }] },
|
||||
{ title: "Ubicación", items: [{ label: "Av. de la Comunitat Valenciana, 27", href: "#" }] },
|
||||
{ title: "Síguenos", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] },
|
||||
]}
|
||||
copyrightText="© 2024 Donna Sofia. Todos los derechos reservados."
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user