Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c96f6bd4e4 | |||
| 6f3eb6829c | |||
| 85345360d1 | |||
| 29f0918d5a | |||
| 56b0345fe9 |
246
src/app/page.tsx
246
src/app/page.tsx
@@ -3,7 +3,6 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
@@ -28,89 +27,29 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
{
|
||||
name: "Avis",
|
||||
id: "#avis",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "Menu", id: "#menu" },
|
||||
{ name: "Avis", id: "#avis" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
brandName="Rennes Burger"
|
||||
button={{
|
||||
text: "Appeler",
|
||||
href: "tel:+33000000000",
|
||||
}}
|
||||
text: "Appeler", href: "tel:+33000000000"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Les meilleurs burgers à Rennes à prix mini"
|
||||
description="Retrouvez des burgers gourmands, préparés avec des ingrédients frais, en plein cœur de Rennes. Livraison rapide et accueil chaleureux au rendez-vous."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/best-friends-hanging-out-restaurant_23-2149244691.jpg",
|
||||
alt: "Client 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-satisfied-african-american-female-student-smiling-pleased-showing-okay-sign-like-something-good-standing-yellow-background_1258-63379.jpg",
|
||||
alt: "Client 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg",
|
||||
alt: "Client 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-person-football-game_23-2149015525.jpg",
|
||||
alt: "Client 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-young-businesswoman_23-2149153828.jpg",
|
||||
alt: "Client 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/best-friends-hanging-out-restaurant_23-2149244691.jpg", alt: "Client 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-satisfied-african-american-female-student-smiling-pleased-showing-okay-sign-like-something-good-standing-yellow-background_1258-63379.jpg", alt: "Client 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg", alt: "Client 3" },
|
||||
]}
|
||||
avatarText="Note moyenne 4.9/5"
|
||||
buttons={[
|
||||
{
|
||||
text: "Appeler maintenant",
|
||||
href: "tel:+33000000000",
|
||||
},
|
||||
{
|
||||
text: "Itinéraire",
|
||||
href: "https://maps.google.com",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "100% Frais",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Fait Maison",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Livraison Rapide",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Ouvert 6j/7",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Produits Locaux",
|
||||
},
|
||||
{ text: "Appeler maintenant", href: "tel:+33000000000" },
|
||||
{ text: "Itinéraire", href: "https://maps.google.com" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -122,182 +61,45 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Burger Classique",
|
||||
price: "8.50 €",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/burger-with-black-bun-orange-background_23-2148258371.jpg?_wi=1",
|
||||
imageAlt: "Burger classique",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Burger Poulet Croustillant",
|
||||
price: "9.50 €",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-burger-withy-tomato-cheese-lettuce-white-surface_114579-30401.jpg?_wi=1",
|
||||
imageAlt: "Burger poulet",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Burger Végé",
|
||||
price: "9.00 €",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cheeseburger-cutting-board-with-knife_23-2148784512.jpg?_wi=1",
|
||||
imageAlt: "Burger veggie",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Burger Double Beef",
|
||||
price: "11.00 €",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cut-whole-tasty-sandwiches-tomatoes-with-stem-onions-black-tray-dark-mix-color-surface_179666-34221.jpg?_wi=1",
|
||||
imageAlt: "Double burger",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Burger Bacon Cheese",
|
||||
price: "9.50 €",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/freshly-baked-buns-table_140725-8141.jpg?_wi=1",
|
||||
imageAlt: "Bacon burger",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Burger Spécial Rennes",
|
||||
price: "10.50 €",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fancy-cuisine-with-yummy-hamburger_23-2148374860.jpg",
|
||||
imageAlt: "Burger special",
|
||||
},
|
||||
{ id: "1", name: "Burger Classique", price: "8.50 €", imageSrc: "http://img.b2bpic.net/free-photo/burger-with-black-bun-orange-background_23-2148258371.jpg?_wi=1" },
|
||||
{ id: "2", name: "Burger Poulet", price: "9.50 €", imageSrc: "http://img.b2bpic.net/free-photo/tasty-burger-withy-tomato-cheese-lettuce-white-surface_114579-30401.jpg?_wi=1" },
|
||||
{ id: "3", name: "Burger Veggie", price: "9.00 €", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cheeseburger-cutting-board-with-knife_23-2148784512.jpg?_wi=1" },
|
||||
]}
|
||||
title="Notre Menu"
|
||||
description="Découvrez notre sélection de burgers faits maison, menus complets et boissons rafraîchissantes."
|
||||
description="Découvrez notre sélection de burgers faits maison."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="avis" data-section="avis">
|
||||
<TestimonialCardFifteen
|
||||
useInvertedBackground={false}
|
||||
testimonial="Les meilleurs burgers de Rennes ! Service rapide et les ingrédients sont vraiment frais. Je recommande à 100% !"
|
||||
testimonial="Les meilleurs burgers de Rennes ! Service rapide et les ingrédients sont vraiment frais."
|
||||
rating={5}
|
||||
author="Thomas Martin"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/best-friends-hanging-out-restaurant_23-2149244691.jpg",
|
||||
alt: "Client 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-satisfied-african-american-female-student-smiling-pleased-showing-okay-sign-like-something-good-standing-yellow-background_1258-63379.jpg",
|
||||
alt: "Client 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-with-thumbs-up_1149-1163.jpg",
|
||||
alt: "Client 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-person-football-game_23-2149015525.jpg",
|
||||
alt: "Client 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-young-businesswoman_23-2149153828.jpg",
|
||||
alt: "Client 5",
|
||||
},
|
||||
]}
|
||||
ratingAnimation="blur-reveal"
|
||||
avatarsAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardSix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Pourquoi nous choisir ?"
|
||||
description="Qualité, rapidité et passion pour le burger."
|
||||
features={[
|
||||
{
|
||||
title: "Ingrédients frais",
|
||||
description: "Viande fraîche et légumes du jour.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/burger-with-black-bun-orange-background_23-2148258371.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Livraison rapide",
|
||||
description: "Votre repas chaud devant chez vous.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-burger-withy-tomato-cheese-lettuce-white-surface_114579-30401.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Ambiance chaleureuse",
|
||||
description: "Un cadre convivial en plein centre.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cheeseburger-cutting-board-with-knife_23-2148784512.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Options Veggie",
|
||||
description: "Nos burgers végétariens sont divins.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cut-whole-tasty-sandwiches-tomatoes-with-stem-onions-black-tray-dark-mix-color-surface_179666-34221.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
title: "Recettes exclusives",
|
||||
description: "Des associations uniques pour vos papilles.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/freshly-baked-buns-table_140725-8141.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
avatars={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Contactez-nous"
|
||||
description="Une question ou une réservation ? Appelez-nous ou envoyez un message via le formulaire ci-dessous."
|
||||
description="Une question ou une réservation ?"
|
||||
useInvertedBackground={false}
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Votre nom",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Votre numéro",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Votre nom" },
|
||||
{ name: "phone", type: "tel", placeholder: "Votre numéro" },
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Votre message ou réservation",
|
||||
rows: 4,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/delivery-truck-with-cardboard-location-pin-tracking-free-shipping-fast-delivery-car-deliver-express-delivery-transportation-logistics-concept-background-3d-rendering-illustration_56104-2059.jpg"
|
||||
mediaPosition="right"
|
||||
textarea={{ name: "message", placeholder: "Votre message" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Adresse",
|
||||
items: [
|
||||
{
|
||||
label: "59 Rue Jean Guéhenno, 35700 Rennes",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Horaires",
|
||||
items: [
|
||||
{
|
||||
label: "Lun-Sam: 11h30 - 22h",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Infos",
|
||||
items: [
|
||||
{
|
||||
label: "02 00 00 00 00",
|
||||
href: "tel:+33200000000",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Adresse", items: [{ label: "59 Rue Jean Guéhenno, 35700 Rennes" }] },
|
||||
{ title: "Horaires", items: [{ label: "Lun-Sam: 11h30 - 22h" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Rennes Burger"
|
||||
bottomRightText="Mentions Légales"
|
||||
@@ -306,4 +108,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user