Merge version_2 into main #1
49
src/app/contact/page.tsx
Normal file
49
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,49 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="directional-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="small"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="noise"
|
||||
cardStyle="layered-gradient"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Accueil", id: "/" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Palace du Prince"
|
||||
/>
|
||||
|
||||
<div className="pt-32 pb-20">
|
||||
<ContactText
|
||||
text="Contactez le Palace du Prince à Lomé. Nous sommes situés au quartier administratif, 65G3+PL4. Ouvert tous les jours de 10h à 00h. Appelez-nous au +228 90 21 26 27 pour toute réservation."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{ title: "Palace du Prince", items: [{ label: "65G3+PL4, Lomé, Togo" }, { label: "+228 90 21 26 27" }, { label: "Ouvert tous les jours 10h-00h" }] },
|
||||
{ title: "Liens", items: [{ label: "Accueil", href: "/" }, { label: "Contact", href: "/contact" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 Palace du Prince. Tous droits réservés."
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
193
src/app/page.tsx
193
src/app/page.tsx
@@ -29,26 +29,11 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Accueil",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "À propos",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Avis",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Accueil", id: "hero" },
|
||||
{ name: "À propos", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Avis", id: "testimonials" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Palace du Prince"
|
||||
/>
|
||||
@@ -58,38 +43,10 @@ export default function LandingPage() {
|
||||
<HeroOverlay
|
||||
title="Palace du Prince"
|
||||
description="Une expérience culinaire inoubliable à Lomé. Savourez l'excellence gastronomique dans un cadre raffiné et prestigieux."
|
||||
buttons={[
|
||||
{
|
||||
text: "Réserver maintenant",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Réserver maintenant", href: "/contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/beige-colored-interior-dining-room_114579-2540.jpg"
|
||||
imageAlt="Restaurant Palace du Prince élégant"
|
||||
showBlur={true}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/dining-table-with-chairs-tableware_140725-7822.jpg",
|
||||
alt: "Client satisfait",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/decorated-wedding-reception-venue-with-view-sea-through-windows_637285-1001.jpg",
|
||||
alt: "Dîner de prestige",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/restaurant-dinner-table-with-plates-cutlery-yellow-blue-glasses_140725-8444.jpg",
|
||||
alt: "Table dressée",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3428.jpg",
|
||||
alt: "Verres à vin",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/people-cheering-with-wine-glasses-luxurious-restaurant_23-2150517447.jpg",
|
||||
alt: "Convives joyeux",
|
||||
},
|
||||
]}
|
||||
avatarText="Plus de 500 gourmets satisfaits"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -111,151 +68,23 @@ export default function LandingPage() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Dibi traditionnel revisité",
|
||||
price: "12 000 FCFA",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-black-jelly-dessert-plate_23-2148238723.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Poulet Royal aux épices",
|
||||
price: "9 500 FCFA",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/purple-rice-berries-cooked-with-grilled-chicken-breast-pumpkin-carrots-mint-leaves-dish-clean-food_1150-20159.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Poisson braisé sauce chef",
|
||||
price: "15 000 FCFA",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-smoked-fish-plate-balyk-salmon-with-herbs-pomegranate-lemon-slices_141793-4129.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sorbet exotique",
|
||||
price: "4 500 FCFA",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-confectioner-making-gingerbread-sunflower-gingerbread-design_169016-19996.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Cocktail Palace du Prince",
|
||||
price: "3 500 FCFA",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-cherry-jam-from-crystal-pot-into-saucer-tea-setup_140725-528.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Entrée raffinée du jour",
|
||||
price: "6 000 FCFA",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-sliced-potato-pies-with-mushed-pumpkin-tomatoes-grey-background-oven-cake-pie-bake-color_140725-110272.jpg",
|
||||
},
|
||||
{ id: "1", name: "Dibi traditionnel revisité", price: "12 000 FCFA", imageSrc: "http://img.b2bpic.net/free-photo/delicious-black-jelly-dessert-plate_23-2148238723.jpg" },
|
||||
{ id: "2", name: "Poulet Royal aux épices", price: "9 500 FCFA", imageSrc: "http://img.b2bpic.net/free-photo/purple-rice-berries-cooked-with-grilled-chicken-breast-pumpkin-carrots-mint-leaves-dish-clean-food_1150-20159.jpg" },
|
||||
{ id: "3", name: "Poisson braisé sauce chef", price: "15 000 FCFA", imageSrc: "http://img.b2bpic.net/free-photo/top-view-smoked-fish-plate-balyk-salmon-with-herbs-pomegranate-lemon-slices_141793-4129.jpg" }
|
||||
]}
|
||||
title="Découvrez notre menu"
|
||||
description="Une sélection rigoureuse de saveurs locales et internationales préparées avec passion."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split-description"
|
||||
gridVariant="asymmetric-60-wide-40-narrow"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Jean K.",
|
||||
role: "Client fidèle",
|
||||
company: "Lomé",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-presents-girl-ring_1398-4220.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Marie L.",
|
||||
role: "Gourmande",
|
||||
company: "Lomé",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Paul D.",
|
||||
role: "Expert culinaire",
|
||||
company: "Togo",
|
||||
rating: 4,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-young-people-having-dinner-together_23-2148454169.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sophie M.",
|
||||
role: "Visiteur",
|
||||
company: "Voyageur",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-couple-having-lunch-luxury-restaurant_23-2150598347.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Thomas B.",
|
||||
role: "Local",
|
||||
company: "Lomé",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-restaurant_23-2148006698.jpg",
|
||||
},
|
||||
]}
|
||||
title="Ce que nos clients disent"
|
||||
description="Une reconnaissance qui nous pousse à l'excellence chaque jour."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
text="Réservez votre table ou commandez dès maintenant. Palace du Prince, 65G3+PL4 Lomé. Appelez-nous au +228 90 21 26 27."
|
||||
buttons={[
|
||||
{
|
||||
text: "Contacter sur WhatsApp",
|
||||
href: "https://wa.me/22890212627",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Palace du Prince",
|
||||
items: [
|
||||
{
|
||||
label: "65G3+PL4, Lomé, Togo",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Ouvert tous les jours jusqu'à 00h00",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Liens utiles",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "Réserver",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Palace du Prince", items: [{ label: "65G3+PL4, Lomé, Togo", href: "#" }, { label: "Ouvert 7j/7 jusqu'à 00h00", href: "#" }] },
|
||||
{ title: "Navigation", items: [{ label: "Accueil", href: "/" }, { label: "Contact", href: "/contact" }] }
|
||||
]}
|
||||
bottomLeftText="© 2024 Palace du Prince. Tous droits réservés."
|
||||
bottomRightText="Développé pour l'excellence"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user