Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 235934096c | |||
| ed5cb463c5 | |||
| 3de26e4842 | |||
| a73759a7ef |
71
src/app/menus/page.tsx
Normal file
71
src/app/menus/page.tsx
Normal file
@@ -0,0 +1,71 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
|
||||
|
||||
export default function MenusPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
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: "Accueil", id: "/" },
|
||||
{ name: "À Propos", id: "/#about" },
|
||||
{ name: "Menu", id: "/menus" },
|
||||
{ name: "Nos Services", id: "/#features" },
|
||||
{ name: "Avis", id: "/#testimonials" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
brandName="Le Viand'Art"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardFive
|
||||
title="Notre Carte"
|
||||
description="Découvrez nos sélections de viandes et nos plats raffinés."
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{
|
||||
id: "1", tag: "Entrées", price: "12€", period: "dès", description: "Mises en bouche gourmandes et salades composées.", button: { text: "Voir" },
|
||||
featuresTitle: "Suggestions", features: ["Salade fraîche", "Soupe du jour", "Assiette de charcuterie"]
|
||||
},
|
||||
{
|
||||
id: "2", tag: "Viandes", price: "24€", period: "dès", description: "Nos pièces de bœuf d'exception.", button: { text: "Voir" },
|
||||
featuresTitle: "Nos spécialités", features: ["Entrecôte", "Filet de bœuf", "Côte de bœuf (2 pers.)"]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
logoText="Le Viand'Art"
|
||||
videoSrc="https://assets.mixkit.co/videos/preview/mixkit-close-up-of-a-steak-cooking-on-a-grill-45136-large.mp4"
|
||||
columns={[
|
||||
{ title: "Navigation", items: [{ label: "Accueil", href: "/" }, { label: "Menu", href: "/menus" }] },
|
||||
{ title: "Infos", items: [{ label: "Contact", href: "/#contact" }, { label: "Mentions Légales", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -33,7 +33,8 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Accueil", id: "hero" },
|
||||
{ name: "À Propos", id: "about" },
|
||||
{ name: "Menu & Services", id: "features" },
|
||||
{ name: "Menu", id: "/menus" },
|
||||
{ name: "Nos Services", id: "features" },
|
||||
{ name: "Avis", id: "testimonials" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
@@ -47,7 +48,7 @@ export default function LandingPage() {
|
||||
title="L'excellence de la viande à Ambilly"
|
||||
description="Découvrez Le Viand'Art, votre destination gastronomique pour des entrecôtes d'exception et une cuisine raffinée. Une expérience culinaire unique au 56 Rue de Genève."
|
||||
buttons={[
|
||||
{ text: "Voir le Menu", href: "#features" },
|
||||
{ text: "Voir le Menu", href: "/menus" },
|
||||
{ text: "Itinéraire", href: "#contact" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/boiled-chicken-with-asparagus-cauliflower_140725-9321.jpg"
|
||||
@@ -145,7 +146,7 @@ export default function LandingPage() {
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-business-owner-standing-outdoors_23-2149434497.jpg"
|
||||
logoText="Le Viand'Art"
|
||||
columns={[
|
||||
{ title: "Navigation", items: [{ label: "Accueil", href: "#hero" }, { label: "Menu", href: "#features" }] },
|
||||
{ title: "Navigation", items: [{ label: "Accueil", href: "#hero" }, { label: "Menu", href: "/menus" }] },
|
||||
{ title: "Infos", items: [{ label: "Contact", href: "#contact" }, { label: "Mentions Légales", href: "#" }] },
|
||||
]}
|
||||
imageAlt="restaurant entrance evening exterior"
|
||||
@@ -154,4 +155,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user