diff --git a/src/app/page.tsx b/src/app/page.tsx index ee0c1d8..e9b09f0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -37,6 +37,7 @@ export default function LuxuryJungleEscapePage() { { name: "Information", id: "faq" }, { name: "Reservations", id: "contact" } ]} + button={{ text: "Reserve Your Escape", href: "#contact" }} /> @@ -52,28 +53,26 @@ export default function LuxuryJungleEscapePage() { ]} carouselItems={[ { - id: "1", imageSrc: "asset://hero-image-1", imageAlt: "Modern luxury mansion overlooking jungle canopy" + id: "1", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Modern luxury mansion overlooking jungle canopy" }, { - id: "2", imageSrc: "asset://hero-image-2", imageAlt: "Sophisticated interior with natural wood and stone" + id: "2", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Sophisticated interior with natural wood and stone" }, { - id: "3", imageSrc: "asset://hero-image-3", imageAlt: "Infinity pool merging with jungle landscape" + id: "3", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Infinity pool merging with jungle landscape" }, { - id: "4", imageSrc: "asset://hero-image-4", imageAlt: "Luxury spa sanctuary with waterfall features" + id: "4", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Luxury spa sanctuary with waterfall features" }, { - id: "5", imageSrc: "asset://hero-image-5", imageAlt: "Private dining pavilion overlooking nature" + id: "5", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Private dining pavilion overlooking nature" }, { - id: "6", imageSrc: "asset://hero-image-6", imageAlt: "Evening ambiance with elegant lighting and tropical setting" + id: "6", imageSrc: "/placeholders/placeholder1.webp", imageAlt: "Evening ambiance with elegant lighting and tropical setting" } ]} autoPlay={true} autoPlayInterval={5000} - containerClassName="w-full" - titleClassName="text-8xl md:text-9xl font-bold" ariaLabel="Luxury Jungle Escape hero section with mansion imagery carousel" /> @@ -82,7 +81,7 @@ export default function LuxuryJungleEscapePage() {