This commit is contained in:
2025-09-01 17:21:41 +02:00
parent eb868d6b0c
commit 7290f7bf2a
2 changed files with 3 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
import { ContactHero } from "@/components/ContactHero"
import { Header } from "@/components/Header"
import { Footer } from "@/components/Footer"
import { Testimonials } from "@/components/Testimonials"
export default function Contact() {
return (
@@ -8,6 +9,7 @@ export default function Contact() {
<Header />
<main>
<ContactHero />
<Testimonials />
</main>
<Footer />
</>

View File

@@ -124,7 +124,7 @@ export function Itinerary() {
<div className="absolute inset-0 flex items-start justify-center mx-auto max-w-lg flex-col lg:text-start text-center px-4 sm:px-6 lg:px-10 pt-20 lg:pt-0">
<H2 className="text-white">{dayData.title}</H2>
{dayData.content.map((paragraph, index) => (
<PS key={index} className="mt-2 text-gray-50">{paragraph}</PS>
<PS key={index} className="mt-2 text-white">{paragraph}</PS>
))}
<div className="mt-6 flex justify-center items-center ">
<ChevronDownIcon