Add src/app/contact/page.tsx
This commit is contained in:
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user