Merge version_1 into main #9

Merged
bender merged 1 commits from version_1 into main 2026-04-02 12:17:21 +00:00

View File

@@ -2,9 +2,8 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactFaq from '@/components/sections/contact/ContactFaq';
import ContactFaq from '@/components/sections/faq/FaqSplitText';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import LegalSection from '@/components/legal/LegalSection';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { Phone } from "lucide-react";
@@ -37,8 +36,12 @@ export default function ContactPage() {
<div id="contact-info" data-section="contact-info">
<ContactFaq
animationType="slide-up"
useInvertedBackground={false}
sideTitle="Book Your Stay Today"
sideDescription="Get in touch for the best rates and availability. Call us now or fill out the form."
buttons={[
{ text: "Call Now", href: "tel:+21600000000" }
]}
faqsAnimation="slide-up"
faqs={[
{
id: "f1", title: "Where are you located?", content: "We are located at Avenue Taieb Mhiri, Sousse."
@@ -47,27 +50,6 @@ export default function ContactPage() {
id: "f2", title: "Do you offer Wi-Fi?", content: "Yes, high-speed Wi-Fi is available for free."
},
]}
ctaTitle="Book Your Stay Today"
ctaDescription="Get in touch for the best rates and availability. Call us now or fill out the form."
ctaButton={{
text: "Call Now", href: "tel:+21600000000"
}}
ctaIcon={Phone}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Booking Policy"
sections={[
{
heading: "Cancellation", content: "Cancellations must be made 48 hours prior to arrival."
},
{
heading: "Payment", content: "Credit card required, Cash at arrival"
}
]}
/>
</div>