Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6f3eb6829c | |||
| 29f0918d5a | |||
| 56b0345fe9 |
244
src/app/page.tsx
244
src/app/page.tsx
@@ -3,7 +3,6 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
|
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
@@ -28,89 +27,29 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Menu", id: "#menu" },
|
||||||
name: "Menu",
|
{ name: "Avis", id: "#avis" },
|
||||||
id: "#menu",
|
{ name: "Contact", id: "#contact" },
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Avis",
|
|
||||||
id: "#avis",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Rennes Burger"
|
brandName="Rennes Burger"
|
||||||
button={{
|
button={{
|
||||||
text: "Appeler",
|
text: "Appeler", href: "tel:+33000000000"}}
|
||||||
href: "tel:+33000000000",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroCentered
|
||||||
background={{
|
background={{ variant: "gradient-bars" }}
|
||||||
variant: "gradient-bars",
|
|
||||||
}}
|
|
||||||
title="Les meilleurs burgers à Rennes à prix mini"
|
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."
|
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={[
|
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/best-friends-hanging-out-restaurant_23-2149244691.jpg",
|
{ 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" },
|
||||||
alt: "Client 1",
|
{ 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-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",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Note moyenne 4.9/5"
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Appeler maintenant", href: "tel:+33000000000" },
|
||||||
text: "Appeler maintenant",
|
{ text: "Itinéraire", href: "https://maps.google.com" },
|
||||||
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",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -122,182 +61,45 @@ export default function LandingPage() {
|
|||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
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" },
|
||||||
id: "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" },
|
||||||
name: "Burger Classique",
|
{ 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" },
|
||||||
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",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Notre Menu"
|
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>
|
||||||
|
|
||||||
<div id="avis" data-section="avis">
|
<div id="avis" data-section="avis">
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardFifteen
|
||||||
useInvertedBackground={false}
|
testimonial="Les meilleurs burgers de Rennes ! Service rapide et les ingrédients sont vraiment frais."
|
||||||
testimonial="Les meilleurs burgers de Rennes ! Service rapide et les ingrédients sont vraiment frais. Je recommande à 100% !"
|
|
||||||
rating={5}
|
rating={5}
|
||||||
author="Thomas Martin"
|
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"
|
ratingAnimation="blur-reveal"
|
||||||
avatarsAnimation="blur-reveal"
|
avatarsAnimation="blur-reveal"
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="feature" data-section="feature">
|
|
||||||
<FeatureCardSix
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Pourquoi nous choisir ?"
|
avatars={[]}
|
||||||
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",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
|
||||||
title="Contactez-nous"
|
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={[
|
inputs={[
|
||||||
{
|
{ name: "name", type: "text", placeholder: "Votre nom" },
|
||||||
name: "name",
|
{ name: "phone", type: "tel", placeholder: "Votre numéro" },
|
||||||
type: "text",
|
|
||||||
placeholder: "Votre nom",
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "phone",
|
|
||||||
type: "tel",
|
|
||||||
placeholder: "Votre numéro",
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
textarea={{
|
textarea={{ name: "message", placeholder: "Votre message" }}
|
||||||
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"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ title: "Adresse", items: [{ label: "59 Rue Jean Guéhenno, 35700 Rennes" }] },
|
||||||
title: "Adresse",
|
{ title: "Horaires", items: [{ label: "Lun-Sam: 11h30 - 22h" }] },
|
||||||
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",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
bottomLeftText="© 2024 Rennes Burger"
|
bottomLeftText="© 2024 Rennes Burger"
|
||||||
bottomRightText="Mentions Légales"
|
bottomRightText="Mentions Légales"
|
||||||
|
|||||||
Reference in New Issue
Block a user