change
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
import { ContactHero } from "@/components/ContactHero"
|
import { ContactHero } from "@/components/ContactHero"
|
||||||
import { Header } from "@/components/Header"
|
import { Header } from "@/components/Header"
|
||||||
import { Footer } from "@/components/Footer"
|
import { Footer } from "@/components/Footer"
|
||||||
|
import { Testimonials } from "@/components/Testimonials"
|
||||||
|
|
||||||
export default function Contact() {
|
export default function Contact() {
|
||||||
return (
|
return (
|
||||||
@@ -8,6 +9,7 @@ export default function Contact() {
|
|||||||
<Header />
|
<Header />
|
||||||
<main>
|
<main>
|
||||||
<ContactHero />
|
<ContactHero />
|
||||||
|
<Testimonials />
|
||||||
</main>
|
</main>
|
||||||
<Footer />
|
<Footer />
|
||||||
</>
|
</>
|
||||||
|
@@ -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">
|
<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>
|
<H2 className="text-white">{dayData.title}</H2>
|
||||||
{dayData.content.map((paragraph, index) => (
|
{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 ">
|
<div className="mt-6 flex justify-center items-center ">
|
||||||
<ChevronDownIcon
|
<ChevronDownIcon
|
||||||
|
Reference in New Issue
Block a user