Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-01-14 23:11:11 +00:00
2 changed files with 15 additions and 6 deletions

View File

@@ -1262,4 +1262,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
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 FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
@@ -36,13 +36,22 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboard
<HeroBillboardGallery
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."
tag="Premium Beach Resort"
tagIcon={Waves}
imageSrc="https://www.beachcottages.com/gallery"
imageAlt="Luxurious beachfront cottage overlooking the ocean"
images={[
{
src: "https://www.beachcottages.com/gallery", alt: "Luxurious beachfront cottage overlooking the ocean"
},
{
src: "https://www.beachcottages.com/gallery", alt: "Sunset view from cottage patio"
},
{
src: "https://www.beachcottages.com/gallery", alt: "Oceanfront swimming pool"
}
]}
buttons={[
{ text: "Explore Rooms", href: "#rooms" },
{ text: "Reserve Now", href: "contact" }
@@ -279,4 +288,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}