4 Commits

Author SHA1 Message Date
1e9e73cc51 Update src/app/page.tsx 2026-01-14 23:18:07 +00:00
6ab433b2d8 Update src/app/page.tsx 2026-01-14 23:13:09 +00:00
7fdc7c44fb Update src/app/page.tsx 2026-01-14 23:11:06 +00:00
d10cfe1f0f Update src/app/layout.tsx 2026-01-14 23:11:06 +00:00
2 changed files with 21 additions and 6 deletions

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardFour from '@/components/sections/product/ProductCardFour';
@@ -36,13 +36,28 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboard <HeroBillboardGallery
title="Coastal Luxury Awaits You" title="Coastal Luxury Awaits You"
description="Experience tranquility at our beachfront cottages. Wake to ocean breezes, golden sunsets, and world-class hospitality. Your perfect beach escape begins here." description="Experience tranquility at our beachfront cottages. Wake to ocean breezes, golden sunsets, and world-class hospitality. Your perfect beach escape begins here."
tag="Premium Beach Resort" tag="Premium Beach Resort"
tagIcon={Waves} tagIcon={Waves}
imageSrc="https://www.beachcottages.com/gallery" mediaItems={[
imageAlt="Luxurious beachfront cottage overlooking the ocean" {
imageSrc: "https://www.beachcottages.com/gallery", imageAlt: "Luxurious beachfront cottage overlooking the ocean"
},
{
imageSrc: "https://www.beachcottages.com/gallery", imageAlt: "Sunset view from cottage patio"
},
{
imageSrc: "https://www.beachcottages.com/gallery", imageAlt: "Oceanfront swimming pool"
},
{
imageSrc: "https://www.beachcottages.com/gallery", imageAlt: "Beachfront garden with tropical plants"
},
{
imageSrc: "https://www.beachcottages.com/gallery", imageAlt: "Cottage interior with ocean view"
}
]}
buttons={[ buttons={[
{ text: "Explore Rooms", href: "#rooms" }, { text: "Explore Rooms", href: "#rooms" },
{ text: "Reserve Now", href: "contact" } { text: "Reserve Now", href: "contact" }