Merge version_8 into main #12

Merged
bender merged 1 commits from version_8 into main 2026-03-11 07:58:12 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery";
import ProductCardThree from "@/components/sections/product/ProductCardThree";
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
@@ -84,26 +84,27 @@ export default function HomePage() {
</div>
<div id="hero" data-section="hero" className="relative overflow-hidden">
<HeroSplitKpi
background={{ variant: "glowing-orb" }}
<HeroBillboardGallery
title="Discover Tanzania Like Never Before"
description="Luxury safaris, Zanzibar escapes, and unforgettable African adventures await. Explore Tanzania with experts who understand the magic of the wild."
tag="Explore Tanzania — Limited availability"
tagIcon={Compass}
enableKpiAnimation={true}
kpis={[
{ value: "4.9★", label: "Average Guest Rating" },
{ value: "20+", label: "Years Local Expertise" },
{ value: "5,000+", label: "Trusted Travelers" },
]}
buttons={[
{ text: "Book Your Safari", href: "/booking" },
{ text: "Explore Packages", href: "/safari-packages" },
]}
imageSrc="http://img.b2bpic.net/free-photo/lonely-acacia-tree-camelthorne-with-blue-sky-background-etosha-national-park-namibia-south-africa_1150-21621.jpg"
imageAlt="Stunning Tanzanian safari landscape with wildlife"
imagePosition="right"
galleryItems={[
{
src: "http://img.b2bpic.net/free-photo/lonely-acacia-tree-camelthorne-with-blue-sky-background-etosha-national-park-namibia-south-africa_1150-21621.jpg", alt: "Stunning Tanzanian safari landscape with wildlife"},
{
src: "http://img.b2bpic.net/free-photo/bison-wild-sunny-day_23-2151689001.jpg", alt: "Serengeti National Park safari with wildlife"},
{
src: "http://img.b2bpic.net/free-photo/tribe-wild-horses-eating-grass-field_181624-2323.jpg", alt: "Ngorongoro Crater landscape and wildlife"},
{
src: "http://img.b2bpic.net/free-photo/maldives-island_1203-7353.jpg", alt: "Zanzibar beach resort"},
]}
mediaAnimation="slide-up"
background={{ variant: "glowing-orb" }}
/>
</div>
@@ -284,4 +285,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}