Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #3.
This commit is contained in:
@@ -1,62 +1,64 @@
|
||||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Award, MapPin, Zap, Shield, Heart, Trophy } from "lucide-react";
|
||||
import Link from "next/link";
|
||||
import { MapPin, Award, Heart, Users, Globe, Zap } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Safaris", id: "/safaris" },
|
||||
{ name: "Zanzibar", id: "/zanzibar" },
|
||||
{ name: "Destinations", id: "/destinations" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Safaris", id: "/safari-packages" },
|
||||
{ name: "Zanzibar", id: "/zanzibar-tours" },
|
||||
{ name: "Destinations", id: "destinations" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Destinations",
|
||||
items: [
|
||||
{ label: "Serengeti Safari", href: "/" },
|
||||
{ label: "Ngorongoro Crater", href: "/" },
|
||||
{ label: "Mount Kilimanjaro", href: "/" },
|
||||
{ label: "Zanzibar Island", href: "/about" },
|
||||
title: "Destinations", items: [
|
||||
{ label: "Serengeti Safari", href: "/destinations#serengeti" },
|
||||
{ label: "Ngorongoro Crater", href: "/destinations#ngorongoro" },
|
||||
{ label: "Mount Kilimanjaro", href: "/destinations#kilimanjaro" },
|
||||
{ label: "Zanzibar Island", href: "/zanzibar-tours" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Experiences",
|
||||
items: [
|
||||
{ label: "Safari Packages", href: "/" },
|
||||
{ label: "Beach Retreats", href: "/about" },
|
||||
{ label: "Custom Tours", href: "/" },
|
||||
{ label: "Gallery", href: "/" },
|
||||
title: "Experiences", items: [
|
||||
{ label: "Safari Packages", href: "/safari-packages" },
|
||||
{ label: "Beach Retreats", href: "/zanzibar-tours" },
|
||||
{ label: "Custom Tours", href: "/booking" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/" },
|
||||
{ label: "Testimonials", href: "/" },
|
||||
{ label: "Careers", href: "/" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{ label: "FAQ", href: "/" },
|
||||
{ label: "Travel Guide", href: "/" },
|
||||
{ label: "Booking Help", href: "/" },
|
||||
{ label: "Contact Support", href: "/" },
|
||||
title: "Support", items: [
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Travel Guide", href: "#" },
|
||||
{ label: "Booking Help", href: "#" },
|
||||
{ label: "Contact Support", href: "/contact" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
const customNavItems = navItems.map(item => ({
|
||||
...item,
|
||||
id: item.id.startsWith("/") ? item.id : `#${item.id}`,
|
||||
}));
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -64,7 +66,7 @@ export default function AboutPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="aurora"
|
||||
background="circleGradient"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
@@ -72,27 +74,45 @@ export default function AboutPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems.map((item) => ({
|
||||
name: item.name,
|
||||
id: item.id,
|
||||
}))}
|
||||
button={{
|
||||
text: "Book Now",
|
||||
href: "/booking",
|
||||
}}
|
||||
navItems={customNavItems}
|
||||
button={{ text: "Book Now", href: "/booking" }}
|
||||
brandName="SK TOURS"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero" className="relative overflow-hidden">
|
||||
<HeroSplitKpi
|
||||
background={{ variant: "glowing-orb" }}
|
||||
title="About SK Tours & Safaris"
|
||||
description="With over 20 years of experience, we're passionate about creating unforgettable African adventures. Our team combines expertise with heart to deliver world-class safari experiences."
|
||||
tag="Our Story"
|
||||
tagIcon={MapPin}
|
||||
enableKpiAnimation={true}
|
||||
kpis={[
|
||||
{ value: "20+", label: "Years Experience" },
|
||||
{ value: "5000+", label: "Happy Guests" },
|
||||
{ value: "100%", label: "Satisfaction" },
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Join Our Adventure", href: "/booking" },
|
||||
{ text: "Explore Tours", href: "/safari-packages" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-retired-couple-enjoying-nature-californian-forest_53876-105617.jpg"
|
||||
imageAlt="SK Tours & Safaris expert guides and luxury camps"
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="Our Story"
|
||||
tagIcon={MapPin}
|
||||
title="Your Gateway to African Wonders - 20 Years of Excellence"
|
||||
tag="Our Mission"
|
||||
tagIcon={Heart}
|
||||
title="Excellence in Every Detail"
|
||||
description="SK Tours & Safaris"
|
||||
subdescription="Premium Travel Experience Since 2004"
|
||||
subdescription="Pioneers of Premium African Travel"
|
||||
icon={Award}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-retired-couple-enjoying-nature-californian-forest_53876-105617.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-retired-couple-enjoying-nature-californian-forest_53876-105617.jpg"
|
||||
imageAlt="SK Tours & Safaris expert guides and luxury camps"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -102,55 +122,47 @@ export default function AboutPage() {
|
||||
<div id="values" data-section="values">
|
||||
<FeatureHoverPattern
|
||||
title="Our Core Values"
|
||||
description="What drives us to deliver exceptional African adventures and unforgettable travel experiences."
|
||||
tag="Why Choose Us"
|
||||
description="These principles guide every safari, every decision, and every interaction with our guests."
|
||||
tag="What We Stand For"
|
||||
textboxLayout="default"
|
||||
animationType="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
icon: Trophy,
|
||||
title: "Excellence",
|
||||
description: "We maintain the highest standards in every aspect of our service, from guides to accommodations.",
|
||||
},
|
||||
{
|
||||
icon: Heart,
|
||||
title: "Passion",
|
||||
description: "Our deep love for Tanzania's natural beauty and culture drives everything we do.",
|
||||
},
|
||||
{
|
||||
icon: Shield,
|
||||
title: "Safety First",
|
||||
description: "We prioritize your safety with certified guides, quality vehicles, and comprehensive insurance.",
|
||||
},
|
||||
{
|
||||
icon: Zap,
|
||||
title: "Innovation",
|
||||
description: "We continuously innovate to create unique, personalized experiences for every traveler.",
|
||||
},
|
||||
{
|
||||
icon: Award,
|
||||
title: "Sustainability",
|
||||
description: "We're committed to preserving Tanzania's environment and supporting local communities.",
|
||||
},
|
||||
{
|
||||
icon: MapPin,
|
||||
title: "Expertise",
|
||||
description: "With 20+ years of experience, our team knows Tanzania better than anyone else.",
|
||||
},
|
||||
{ icon: Globe, title: "Sustainability", description: "Committed to preserving Tanzania's natural heritage and supporting local communities for future generations." },
|
||||
{ icon: Users, title: "Community", description: "Partnering with local guides, teams, and villages to create authentic, community-empowering experiences." },
|
||||
{ icon: Heart, title: "Passion", description: "We love what we do. Our genuine enthusiasm for African wildlife and culture shines in every tour." },
|
||||
{ icon: Award, title: "Excellence", description: "From luxury accommodations to expert guidance, we deliver world-class service at every step." },
|
||||
{ icon: Zap, title: "Innovation", description: "Continuously improving our offerings through technology, new routes, and enhanced guest experiences." },
|
||||
{ icon: MapPin, title: "Exploration", description: "Discovering hidden gems and creating unique experiences that go beyond typical safari itineraries." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Interested in learning more about SK Tours & Safaris? Let's connect and discuss your dream African adventure."
|
||||
animationType="entrance-slide"
|
||||
background={{ variant: "aurora" }}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Book a Consultation", href: "/booking" },
|
||||
{ text: "Contact Us", href: "/contact" },
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
title="About Our Company"
|
||||
description="Learn more about SK Tours & Safaris, our history, and how we operate."
|
||||
tag="Company Info"
|
||||
textboxLayout="default"
|
||||
faqsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How long has SK Tours & Safaris been in business?", content: "SK Tours & Safaris was founded in 2004, giving us over 20 years of experience in providing premium safari and travel experiences across Tanzania."},
|
||||
{
|
||||
id: "2", title: "Are your guides professionally trained?", content: "Yes, all our guides are certified by the Tanzania Tourist Board with a minimum of 5 years of field experience. We provide continuous training in wildlife biology, safety, and hospitality."},
|
||||
{
|
||||
id: "3", title: "What makes SK Tours different from other operators?", content: "We combine luxury accommodations with authentic experiences, prioritize sustainability, employ local guides and staff, and focus on personalized service. Each tour is customized to match your interests."},
|
||||
{
|
||||
id: "4", title: "Do you work with local communities?", content: "Absolutely. We partner with local guides, employ residents from surrounding areas, and ensure a portion of our profits support community development projects in Tanzania."},
|
||||
{
|
||||
id: "5", title: "What is your commitment to environmental sustainability?", content: "We follow strict environmental protocols, support conservation efforts, use eco-friendly practices at our camps, and limit group sizes to minimize impact on wildlife and ecosystems."},
|
||||
{
|
||||
id: "6", title: "Can I customize my safari itinerary?", content: "Yes! We specialize in custom tours. Contact our team with your preferences, budget, and interests, and we'll design the perfect Tanzanian adventure for you."},
|
||||
{
|
||||
id: "7", title: "What safety measures do you have in place?", content: "Safety is our top priority. Our guides are trained in first aid, emergency protocols are in place at all camps, vehicle communications are maintained, and we follow strict wildlife encounter guidelines."},
|
||||
{
|
||||
id: "8", title: "Do you offer corporate or group events?", content: "Yes, we can arrange custom corporate retreats, team building safaris, and group events for any size gathering. Contact us to discuss your specific requirements."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -4,61 +4,62 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
||||
import ProductCardThree from "@/components/sections/product/ProductCardThree";
|
||||
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import Link from "next/link";
|
||||
import { Compass, Sparkles, Quote } from "lucide-react";
|
||||
import { Calendar, MapPin, Award, Sparkles } from "lucide-react";
|
||||
|
||||
export default function BookingPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Safaris", id: "/safaris" },
|
||||
{ name: "Zanzibar", id: "/zanzibar" },
|
||||
{ name: "Destinations", id: "/destinations" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Safaris", id: "/safari-packages" },
|
||||
{ name: "Zanzibar", id: "/zanzibar-tours" },
|
||||
{ name: "Destinations", id: "destinations" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Destinations",
|
||||
items: [
|
||||
{ label: "Serengeti Safari", href: "/" },
|
||||
{ label: "Ngorongoro Crater", href: "/" },
|
||||
{ label: "Mount Kilimanjaro", href: "/" },
|
||||
{ label: "Zanzibar Island", href: "/contact" },
|
||||
title: "Destinations", items: [
|
||||
{ label: "Serengeti Safari", href: "/destinations#serengeti" },
|
||||
{ label: "Ngorongoro Crater", href: "/destinations#ngorongoro" },
|
||||
{ label: "Mount Kilimanjaro", href: "/destinations#kilimanjaro" },
|
||||
{ label: "Zanzibar Island", href: "/zanzibar-tours" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Experiences",
|
||||
items: [
|
||||
{ label: "Safari Packages", href: "/" },
|
||||
{ label: "Beach Retreats", href: "/contact" },
|
||||
title: "Experiences", items: [
|
||||
{ label: "Safari Packages", href: "/safari-packages" },
|
||||
{ label: "Beach Retreats", href: "/zanzibar-tours" },
|
||||
{ label: "Custom Tours", href: "/booking" },
|
||||
{ label: "Gallery", href: "/" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Us", href: "/" },
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Testimonials", href: "/" },
|
||||
{ label: "Careers", href: "/" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{ label: "FAQ", href: "/" },
|
||||
{ label: "Travel Guide", href: "/" },
|
||||
{ label: "Booking Help", href: "/booking" },
|
||||
title: "Support", items: [
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Travel Guide", href: "#" },
|
||||
{ label: "Booking Help", href: "#" },
|
||||
{ label: "Contact Support", href: "/contact" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
const customNavItems = navItems.map(item => ({
|
||||
...item,
|
||||
id: item.id.startsWith("/") ? item.id : `#${item.id}`,
|
||||
}));
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -66,7 +67,7 @@ export default function BookingPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="aurora"
|
||||
background="circleGradient"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
@@ -74,44 +75,41 @@ export default function BookingPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
brandName="SK TOURS"
|
||||
navItems={navItems.map((item) => ({
|
||||
name: item.name,
|
||||
id: item.id.startsWith("/") ? item.id : item.id,
|
||||
}))}
|
||||
navItems={customNavItems}
|
||||
button={{ text: "Book Now", href: "/booking" }}
|
||||
brandName="SK TOURS"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="booking-hero" data-section="booking-hero" className="relative overflow-hidden">
|
||||
<div id="hero" data-section="hero" className="relative overflow-hidden">
|
||||
<HeroSplitKpi
|
||||
background={{ variant: "aurora" }}
|
||||
title="Plan Your Perfect Safari Adventure"
|
||||
description="Let us customize your dream Tanzania experience. Choose from our premium packages or create your own itinerary with our expert travel consultants."
|
||||
tag="Book Your Adventure"
|
||||
tagIcon={Compass}
|
||||
background={{ variant: "glowing-orb" }}
|
||||
title="Book Your Perfect Tanzania Adventure"
|
||||
description="Choose from our curated packages or create a custom itinerary. Our booking process is simple, transparent, and designed for your convenience."
|
||||
tag="Easy Booking"
|
||||
tagIcon={Calendar}
|
||||
enableKpiAnimation={true}
|
||||
kpis={[
|
||||
{ value: "3", label: "Easy Steps" },
|
||||
{ value: "100%", label: "Custom Packages" },
|
||||
{ value: "24/7", label: "Support" },
|
||||
{ value: "24hrs", label: "Response Time" },
|
||||
{ value: "100%", label: "Secure Booking" },
|
||||
{ value: "Flexible", label: "Cancellation" },
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Start Booking", href: "/booking" },
|
||||
{ text: "View Packages", href: "/" },
|
||||
{ text: "View Packages", href: "/safari-packages" },
|
||||
{ text: "Contact Us", href: "/contact" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/lonely-acacia-tree-camelthorne-with-blue-sky-background-etosha-national-park-namibia-south-africa_1150-21621.jpg?_wi=4"
|
||||
imageAlt="Safari landscape for booking"
|
||||
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"
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="booking-packages" data-section="booking-packages" className="bg-gradient-to-b from-transparent to-accent/5">
|
||||
<div id="packages" data-section="packages">
|
||||
<ProductCardThree
|
||||
title="Popular Booking Options"
|
||||
description="Select from our most requested safari and beach packages, or contact us for custom arrangements."
|
||||
tag="Quick Book"
|
||||
title="Popular Tour Packages"
|
||||
description="Select from our most requested safari and beach packages, or customize your own experience."
|
||||
tag="Best Sellers"
|
||||
tagIcon={Sparkles}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
@@ -119,155 +117,75 @@ export default function BookingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "5-Day Serengeti Safari",
|
||||
price: "$4,500",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bison-wild-sunny-day_23-2151689001.jpg?_wi=4",
|
||||
imageAlt: "Serengeti safari package",
|
||||
},
|
||||
id: "1", name: "5-Day Serengeti Safari", price: "$4,500", imageSrc: "http://img.b2bpic.net/free-photo/bison-wild-sunny-day_23-2151689001.jpg", imageAlt: "Serengeti National Park safari"},
|
||||
{
|
||||
id: "2",
|
||||
name: "3-Day Crater Adventure",
|
||||
price: "$3,800",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tribe-wild-horses-eating-grass-field_181624-2323.jpg?_wi=4",
|
||||
imageAlt: "Crater adventure package",
|
||||
},
|
||||
id: "2", name: "3-Day Ngorongoro Tour", price: "$3,800", imageSrc: "http://img.b2bpic.net/free-photo/tribe-wild-horses-eating-grass-field_181624-2323.jpg", imageAlt: "Ngorongoro Crater landscape"},
|
||||
{
|
||||
id: "3",
|
||||
name: "4-Day Zanzibar Escape",
|
||||
price: "$3,200",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/maldives-island_1203-7353.jpg?_wi=4",
|
||||
imageAlt: "Zanzibar beach escape",
|
||||
},
|
||||
id: "3", name: "7-Day Combo Safari & Beach", price: "$5,800", imageSrc: "http://img.b2bpic.net/free-photo/maldives-island_1203-7353.jpg", imageAlt: "Safari and beach combination package"},
|
||||
{
|
||||
id: "4",
|
||||
name: "7-Day Big Five Experience",
|
||||
price: "$6,200",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/wild-animals-collection_1308-331.jpg?_wi=4",
|
||||
imageAlt: "Big Five safari experience",
|
||||
},
|
||||
id: "4", name: "6-Day Kilimanjaro Trek", price: "$2,800", imageSrc: "http://img.b2bpic.net/free-photo/view-spectacular-nature-landscape_23-2150763652.jpg", imageAlt: "Mount Kilimanjaro trekking"},
|
||||
{
|
||||
id: "5",
|
||||
name: "6-Day Kilimanjaro Trek",
|
||||
price: "$2,800",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-spectacular-nature-landscape_23-2150763652.jpg?_wi=4",
|
||||
imageAlt: "Kilimanjaro trek package",
|
||||
},
|
||||
id: "5", name: "4-Day Zanzibar Beach Escape", price: "$1,800", imageSrc: "http://img.b2bpic.net/free-photo/couple-talking-drinking-coconut-milk-by-pool-vacation_23-2149369768.jpg", imageAlt: "Zanzibar beach resort"},
|
||||
{
|
||||
id: "6",
|
||||
name: "9-Day Ultimate Combo",
|
||||
price: "$8,500",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-talking-drinking-coconut-milk-by-pool-vacation_23-2149369768.jpg?_wi=4",
|
||||
imageAlt: "Ultimate safari and beach combo",
|
||||
},
|
||||
id: "6", name: "10-Day Grand African Tour", price: "$8,500", imageSrc: "http://img.b2bpic.net/free-photo/african-savannah-scene-black-white_23-2151774061.jpg", imageAlt: "Comprehensive Tanzania tour"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="booking-testimonials" data-section="booking-testimonials">
|
||||
<TestimonialCardThirteen
|
||||
title="Why Book With Us"
|
||||
description="Hear from travelers who've experienced the SK Tours difference"
|
||||
tag="Traveler Reviews"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
<div id="process" data-section="process">
|
||||
<TestimonialAboutCard
|
||||
tag="How It Works"
|
||||
tagIcon={MapPin}
|
||||
title="Simple 3-Step Booking Process"
|
||||
description="1. Choose - 2. Customize - 3. Confirm"
|
||||
subdescription="Ready to book your adventure in minutes"
|
||||
icon={Award}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-retired-couple-enjoying-nature-californian-forest_53876-105617.jpg"
|
||||
imageAlt="Happy travelers enjoying safari experience"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
showRating={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Mitchell",
|
||||
handle: "@sarahmitchell",
|
||||
testimonial: "The booking process was seamless and the support team answered every question. Best investment in an adventure!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-traveller-happy-be-outdoors_23-2148588534.jpg?_wi=5",
|
||||
imageAlt: "Traveler Sarah",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "James Richardson",
|
||||
handle: "@jamesrich",
|
||||
testimonial: "From initial inquiry to the last day of our safari, SK Tours handled everything perfectly. True professionals.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-traveler-hiking_1098-15180.jpg?_wi=5",
|
||||
imageAlt: "Traveler James",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Elena Rodriguez",
|
||||
handle: "@eleanarod",
|
||||
testimonial: "Booking our Zanzibar getaway was incredibly easy. The team customized everything to our preferences.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-bikini-hat-looking-camera-beach-sunshine_107420-9983.jpg?_wi=5",
|
||||
imageAlt: "Traveler Elena",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="booking-faq" data-section="booking-faq">
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
title="Booking FAQs"
|
||||
description="Find answers to common booking questions and get help with your reservation."
|
||||
tag="Help & Support"
|
||||
title="Booking & Payments FAQ"
|
||||
description="Everything you need to know about booking your safari with SK Tours & Safaris."
|
||||
tag="Booking Info"
|
||||
textboxLayout="default"
|
||||
faqsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "How do I book a safari package?",
|
||||
content: "Booking is simple! Choose your preferred package above, click to reserve, and our team will contact you within 24 hours to confirm details, customize itineraries, and process payment. You can also call us directly for personalized assistance.",
|
||||
},
|
||||
id: "1", title: "How far in advance should I book?", content: "We recommend booking 2-3 months in advance, especially for peak season (June-October). However, we can often accommodate last-minute bookings. Contact us to check availability."},
|
||||
{
|
||||
id: "2",
|
||||
title: "What's included in the booking price?",
|
||||
content: "Our packages include accommodation in luxury camps or resorts, all meals, professional guides, game drives or tours, park entrance fees, and transfers. Premium packages also include airfare and additional experiences. Full breakdowns are provided with each package.",
|
||||
},
|
||||
id: "2", title: "What payment methods do you accept?", content: "We accept credit cards, bank transfers, and digital payment methods. A 30% deposit is required to secure your booking, with the balance due 30 days before departure."},
|
||||
{
|
||||
id: "3",
|
||||
title: "Can I customize my itinerary?",
|
||||
content: "Absolutely! We specialize in tailored experiences. Contact our travel consultants after booking, and we'll work with you to adjust dates, activities, accommodations, and add special experiences to create your perfect trip.",
|
||||
},
|
||||
id: "3", title: "What is your cancellation policy?", content: "Cancellations made 60+ days before departure receive a full refund. 30-60 days: 50% refund. Less than 30 days: no refund. Travel insurance is recommended."},
|
||||
{
|
||||
id: "4",
|
||||
title: "What is your cancellation policy?",
|
||||
content: "We offer flexible cancellation terms. Most packages allow free cancellation up to 30 days before travel. Within 30 days, cancellation fees apply based on supplier policies. Travel insurance is recommended for all bookings.",
|
||||
},
|
||||
id: "4", title: "Can I modify my booking after confirmation?", content: "Yes, modifications are possible depending on availability. Changes made 45+ days before departure incur minimal fees. Less than 45 days may have higher adjustment costs."},
|
||||
{
|
||||
id: "5",
|
||||
title: "How far in advance should I book?",
|
||||
content: "We recommend booking 2-3 months in advance for the best availability and rates. However, we can often accommodate last-minute bookings depending on capacity. Peak seasons (June-October) fill quickly, so advance booking is especially important.",
|
||||
},
|
||||
id: "5", title: "Do you offer group discounts?", content: "Yes! Groups of 6+ people qualify for special rates. Contact our team with your group size and dates for a customized quote."},
|
||||
{
|
||||
id: "6",
|
||||
title: "Do you handle visa and travel documents?",
|
||||
content: "While we don't process visas, we provide detailed guidance on visa requirements, vaccination recommendations, and travel documentation. Our team sends comprehensive travel guides with every booking confirmation.",
|
||||
},
|
||||
id: "6", title: "What's included in the package price?", content: "Packages typically include accommodation, meals, game drives, professional guides, park fees, and ground transportation. Exclusions and add-ons are clearly detailed in your quote."},
|
||||
{
|
||||
id: "7",
|
||||
title: "Is travel insurance included?",
|
||||
content: "Travel insurance is not included but is highly recommended. We can provide referrals to trusted providers who offer coverage for safaris and international travel. Insurance typically costs 5-8% of your total trip cost.",
|
||||
},
|
||||
id: "7", title: "Can I add activities to my package?", content: "Absolutely! We offer optional add-ons like hot air balloon safaris, spa treatments, cultural visits, and special dining experiences. Additional costs apply."},
|
||||
{
|
||||
id: "8",
|
||||
title: "What payment methods do you accept?",
|
||||
content: "We accept credit cards, bank transfers, and wire transfers. A 30% deposit secures your booking, with the balance due 60 days before travel. Monthly payment plans are available for larger packages.",
|
||||
},
|
||||
id: "8", title: "Is travel insurance included?", content: "Travel insurance is not included but is highly recommended. We can provide information on reputable providers, or you may purchase your own coverage."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="booking-contact" data-section="booking-contact">
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to begin your Tanzania adventure? Our booking team is here to help you plan every detail. Contact us today to reserve your spot."
|
||||
text="Ready to book your safari? Our team is here to help you every step of the way. Get in touch today!"
|
||||
animationType="entrance-slide"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Contact Booking Team", href: "/contact" },
|
||||
{ text: "Request Custom Quote", href: "/booking" },
|
||||
{ text: "View All Packages", href: "/safari-packages" },
|
||||
]}
|
||||
background={{ variant: "aurora" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -3,60 +3,62 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import Link from "next/link";
|
||||
import { Compass, Quote } from "lucide-react";
|
||||
import { Mail, MapPin, Phone, Award } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Safaris", id: "/safaris" },
|
||||
{ name: "Zanzibar", id: "/zanzibar" },
|
||||
{ name: "Destinations", id: "/destinations" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Safaris", id: "/safari-packages" },
|
||||
{ name: "Zanzibar", id: "/zanzibar-tours" },
|
||||
{ name: "Destinations", id: "destinations" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Destinations",
|
||||
items: [
|
||||
{ label: "Serengeti Safari", href: "/" },
|
||||
{ label: "Ngorongoro Crater", href: "/" },
|
||||
{ label: "Mount Kilimanjaro", href: "/" },
|
||||
{ label: "Zanzibar Island", href: "/contact" },
|
||||
title: "Destinations", items: [
|
||||
{ label: "Serengeti Safari", href: "/destinations#serengeti" },
|
||||
{ label: "Ngorongoro Crater", href: "/destinations#ngorongoro" },
|
||||
{ label: "Mount Kilimanjaro", href: "/destinations#kilimanjaro" },
|
||||
{ label: "Zanzibar Island", href: "/zanzibar-tours" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Experiences",
|
||||
items: [
|
||||
{ label: "Safari Packages", href: "/" },
|
||||
{ label: "Beach Retreats", href: "/contact" },
|
||||
title: "Experiences", items: [
|
||||
{ label: "Safari Packages", href: "/safari-packages" },
|
||||
{ label: "Beach Retreats", href: "/zanzibar-tours" },
|
||||
{ label: "Custom Tours", href: "/booking" },
|
||||
{ label: "Gallery", href: "/" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{ label: "About Us", href: "/" },
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Testimonials", href: "/" },
|
||||
{ label: "Careers", href: "/" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{ label: "FAQ", href: "/" },
|
||||
{ label: "Travel Guide", href: "/" },
|
||||
{ label: "Booking Help", href: "/booking" },
|
||||
title: "Support", items: [
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Travel Guide", href: "#" },
|
||||
{ label: "Booking Help", href: "#" },
|
||||
{ label: "Contact Support", href: "/contact" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
const customNavItems = navItems.map(item => ({
|
||||
...item,
|
||||
id: item.id.startsWith("/") ? item.id : `#${item.id}`,
|
||||
}));
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -64,7 +66,7 @@ export default function ContactPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="aurora"
|
||||
background="circleGradient"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
@@ -72,89 +74,89 @@ export default function ContactPage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
brandName="SK TOURS"
|
||||
navItems={navItems.map((item) => ({
|
||||
name: item.name,
|
||||
id: item.id.startsWith("/") ? item.id : item.id,
|
||||
}))}
|
||||
navItems={customNavItems}
|
||||
button={{ text: "Book Now", href: "/booking" }}
|
||||
brandName="SK TOURS"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-hero" data-section="contact-hero" className="relative overflow-hidden">
|
||||
<div id="hero" data-section="hero" className="relative overflow-hidden">
|
||||
<HeroSplitKpi
|
||||
background={{ variant: "aurora" }}
|
||||
title="Get in Touch With SK Tours"
|
||||
description="Have questions about our safari packages, Zanzibar escapes, or custom itineraries? Our team of travel experts is here to help you plan the adventure of a lifetime."
|
||||
background={{ variant: "glowing-orb" }}
|
||||
title="Get in Touch with SK Tours & Safaris"
|
||||
description="Have questions about our safaris or packages? Our dedicated team is ready to help you plan the perfect African adventure."
|
||||
tag="Contact Us"
|
||||
tagIcon={Compass}
|
||||
tagIcon={Mail}
|
||||
enableKpiAnimation={true}
|
||||
kpis={[
|
||||
{ value: "24hrs", label: "Response Time" },
|
||||
{ value: "20+", label: "Years Experience" },
|
||||
{ value: "5000+", label: "Happy Clients" },
|
||||
{ value: "24/7", label: "Support Ready" },
|
||||
{ value: "Expert", label: "Consultants" },
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Schedule Call", href: "/contact" },
|
||||
{ text: "Send Message", href: "/contact" },
|
||||
{ text: "Send Message", href: "#contact-form" },
|
||||
{ text: "Book Now", href: "/booking" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-retired-couple-enjoying-nature-californian-forest_53876-105617.jpg?_wi=3"
|
||||
imageAlt="SK Tours team and travel consultants"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-retired-couple-enjoying-nature-californian-forest_53876-105617.jpg"
|
||||
imageAlt="SK Tours & Safaris team ready to help"
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-message" data-section="contact-message">
|
||||
<ContactText
|
||||
text="We're passionate about creating unforgettable African adventures. Whether you need travel advice, have booking questions, or want to customize a package, our team is ready to assist you."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Email Us", href: "mailto:info@sktours.com" },
|
||||
{ text: "Call Direct", href: "tel:+255123456789" },
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
<div id="info" data-section="info">
|
||||
<TestimonialAboutCard
|
||||
tag="Contact Information"
|
||||
tagIcon={MapPin}
|
||||
title="Reach Out to Our Team"
|
||||
description="SK Tours & Safaris"
|
||||
subdescription="Available Monday-Friday, 9am-6pm EAT"
|
||||
icon={Phone}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-retired-couple-enjoying-nature-californian-forest_53876-105617.jpg"
|
||||
imageAlt="Professional SK Tours team members"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-testimonials" data-section="contact-testimonials">
|
||||
<TestimonialCardThirteen
|
||||
title="Client Success Stories"
|
||||
description="Discover what our clients say about working with SK Tours"
|
||||
tag="Client Feedback"
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
title="Contact & Support FAQ"
|
||||
description="Find quick answers to common inquiries about reaching us and our support services."
|
||||
tag="Help & Support"
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What are your business hours?", content: "We're available Monday through Friday, 9:00 AM to 6:00 PM East African Time (EAT). Emergency support available 24/7 for guests on active tours."},
|
||||
{
|
||||
id: "2", title: "What's the best way to contact you?", content: "Email is our preferred method for detailed inquiries (usually responds within 24 hours). For urgent matters, call our office. Whatsapp and social media also monitored during business hours."},
|
||||
{
|
||||
id: "3", title: "How quickly will I receive a response?", content: "We typically respond to inquiries within 24 business hours. For urgent booking requests, call directly. During peak season, responses may take up to 48 hours."},
|
||||
{
|
||||
id: "4", title: "Can I visit your office in person?", content: "Yes, our main office is located in Dar es Salaam, Tanzania. We recommend scheduling an appointment in advance to ensure someone is available to meet with you."},
|
||||
{
|
||||
id: "5", title: "Do you have international phone support?", content: "Yes, we accept calls from international numbers. Alternatively, video calls and virtual meetings can be arranged. Whatsapp is available for text and calling."},
|
||||
{
|
||||
id: "6", title: "What if I need help while traveling?", content: "All guests on active tours have access to 24/7 emergency support. Your guide carries a satellite phone and emergency contact information is provided at the start of your tour."},
|
||||
{
|
||||
id: "7", title: "Do you offer video consultations?", content: "Absolutely! We offer video calls via Zoom, Google Meet, or Whatsapp video to discuss your tour ideas, view photos, and answer questions from anywhere in the world."},
|
||||
{
|
||||
id: "8", title: "Can I contact you through social media?", content: "Yes, we're active on Facebook, Instagram, and Twitter. However, for faster service on urgent matters, please email or call. Social media messages may take longer to response."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-section" data-section="contact-section">
|
||||
<ContactText
|
||||
text="Don't hesitate to reach out. We're excited to help you create memories that will last a lifetime in beautiful Tanzania."
|
||||
animationType="entrance-slide"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
showRating={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Mitchell",
|
||||
handle: "@sarahmitchell",
|
||||
testimonial: "The customer service at SK Tours is exceptional. They responded to every inquiry promptly and made my booking experience smooth and enjoyable.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-traveller-happy-be-outdoors_23-2148588534.jpg?_wi=6",
|
||||
imageAlt: "Traveler Sarah",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "James Richardson",
|
||||
handle: "@jamesrich",
|
||||
testimonial: "From my first inquiry to post-trip follow-up, SK Tours demonstrated genuine care and professionalism. This is a company that truly values its clients.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-traveler-hiking_1098-15180.jpg?_wi=6",
|
||||
imageAlt: "Traveler James",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Victoria Thompson",
|
||||
handle: "@vthompson",
|
||||
testimonial: "I had several special requests for my trip, and SK Tours accommodated every single one. Their attention to detail and flexibility are truly outstanding.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-lady_1163-3171.jpg?_wi=5",
|
||||
imageAlt: "Traveler Victoria",
|
||||
},
|
||||
buttons={[
|
||||
{ text: "Email Us", href: "mailto:info@sktours.com" },
|
||||
{ text: "Call Now", href: "tel:+255123456789" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
280
src/app/page.tsx
280
src/app/page.tsx
@@ -1,66 +1,67 @@
|
||||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import ProductCardThree from "@/components/sections/product/ProductCardThree";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
|
||||
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Compass, Award, Sparkles, Mountain, Droplet, Trees, Zap, Waves, PalmTree, Quote } from "lucide-react";
|
||||
import Link from "next/link";
|
||||
import { Compass, MapPin, Award, Sparkles, Mountain, Droplet, Trees, Zap, Waves, Palmtree, Quote } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Safaris", id: "/safaris" },
|
||||
{ name: "Zanzibar", id: "/zanzibar" },
|
||||
{ name: "Destinations", id: "/destinations" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Safaris", id: "/safari-packages" },
|
||||
{ name: "Zanzibar", id: "/zanzibar-tours" },
|
||||
{ name: "Destinations", id: "destinations" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Destinations",
|
||||
items: [
|
||||
{ label: "Serengeti Safari", href: "/" },
|
||||
{ label: "Ngorongoro Crater", href: "/" },
|
||||
{ label: "Mount Kilimanjaro", href: "/" },
|
||||
{ label: "Zanzibar Island", href: "/about" },
|
||||
title: "Destinations", items: [
|
||||
{ label: "Serengeti Safari", href: "/destinations#serengeti" },
|
||||
{ label: "Ngorongoro Crater", href: "/destinations#ngorongoro" },
|
||||
{ label: "Mount Kilimanjaro", href: "/destinations#kilimanjaro" },
|
||||
{ label: "Zanzibar Island", href: "/zanzibar-tours" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Experiences",
|
||||
items: [
|
||||
{ label: "Safari Packages", href: "/" },
|
||||
{ label: "Beach Retreats", href: "/about" },
|
||||
{ label: "Custom Tours", href: "/" },
|
||||
{ label: "Gallery", href: "/" },
|
||||
title: "Experiences", items: [
|
||||
{ label: "Safari Packages", href: "/safari-packages" },
|
||||
{ label: "Beach Retreats", href: "/zanzibar-tours" },
|
||||
{ label: "Custom Tours", href: "/booking" },
|
||||
{ label: "Gallery", href: "/gallery" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Contact", href: "/" },
|
||||
{ label: "Testimonials", href: "/" },
|
||||
{ label: "Careers", href: "/" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Testimonials", href: "#testimonials" },
|
||||
{ label: "Careers", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{ label: "FAQ", href: "/" },
|
||||
{ label: "Travel Guide", href: "/" },
|
||||
{ label: "Booking Help", href: "/" },
|
||||
{ label: "Contact Support", href: "/" },
|
||||
title: "Support", items: [
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Travel Guide", href: "#" },
|
||||
{ label: "Booking Help", href: "#" },
|
||||
{ label: "Contact Support", href: "/contact" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
const customNavItems = navItems.map(item => ({
|
||||
...item,
|
||||
id: item.id.startsWith("/") ? item.id : `#${item.id}`,
|
||||
}));
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -68,7 +69,7 @@ export default function HomePage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="aurora"
|
||||
background="circleGradient"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="radial-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
@@ -76,36 +77,30 @@ export default function HomePage() {
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={navItems.map((item) => ({
|
||||
name: item.name,
|
||||
id: item.id,
|
||||
}))}
|
||||
button={{
|
||||
text: "Book Now",
|
||||
href: "/booking",
|
||||
}}
|
||||
navItems={customNavItems}
|
||||
button={{ text: "Book Now", href: "/booking" }}
|
||||
brandName="SK TOURS"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero" className="relative overflow-hidden">
|
||||
<HeroSplitKpi
|
||||
background={{ variant: "glowing-orb" }}
|
||||
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"
|
||||
tagIcon={Compass}
|
||||
background={{ variant: "aurora" }}
|
||||
enableKpiAnimation={true}
|
||||
kpis={[
|
||||
{ value: "20+", label: "Years of Excellence" },
|
||||
{ value: "5000+", label: "Happy Travelers" },
|
||||
{ value: "100%", label: "Satisfaction Rate" },
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
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?_wi=1"
|
||||
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"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -115,19 +110,19 @@ export default function HomePage() {
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="Our Story"
|
||||
tagIcon={Award}
|
||||
tagIcon={MapPin}
|
||||
title="Your Gateway to African Wonders"
|
||||
description="SK Tours & Safaris"
|
||||
subdescription="Premium Travel Experience Since 2004"
|
||||
icon={Award}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-retired-couple-enjoying-nature-californian-forest_53876-105617.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/happy-retired-couple-enjoying-nature-californian-forest_53876-105617.jpg"
|
||||
imageAlt="SK Tours & Safaris expert guides and luxury camps"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="safaris" data-section="safaris" className="bg-gradient-to-b from-transparent to-accent/5">
|
||||
<div id="safaris" data-section="safaris">
|
||||
<ProductCardThree
|
||||
title="Featured Safari Packages"
|
||||
description="Curated luxury safari experiences designed for discerning travelers seeking authentic African adventures."
|
||||
@@ -139,47 +134,17 @@ export default function HomePage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Serengeti Safari Experience",
|
||||
price: "$4,500",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/bison-wild-sunny-day_23-2151689001.jpg?_wi=1",
|
||||
imageAlt: "Serengeti National Park safari with wildlife",
|
||||
},
|
||||
id: "1", name: "Serengeti Safari Experience", price: "$4,500", imageSrc: "http://img.b2bpic.net/free-photo/bison-wild-sunny-day_23-2151689001.jpg", imageAlt: "Serengeti National Park safari with wildlife"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Ngorongoro Crater Adventure",
|
||||
price: "$3,800",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tribe-wild-horses-eating-grass-field_181624-2323.jpg?_wi=1",
|
||||
imageAlt: "Ngorongoro Crater landscape and wildlife",
|
||||
},
|
||||
id: "2", name: "Ngorongoro Crater Adventure", price: "$3,800", imageSrc: "http://img.b2bpic.net/free-photo/tribe-wild-horses-eating-grass-field_181624-2323.jpg", imageAlt: "Ngorongoro Crater landscape and wildlife"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Tarangire National Park Safari",
|
||||
price: "$3,200",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/african-savannah-scene-black-white_23-2151774061.jpg?_wi=1",
|
||||
imageAlt: "Tarangire National Park with elephants",
|
||||
},
|
||||
id: "3", name: "Tarangire National Park Safari", price: "$3,200", imageSrc: "http://img.b2bpic.net/free-photo/african-savannah-scene-black-white_23-2151774061.jpg", imageAlt: "Tarangire National Park with elephants"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Big Five Luxury Safari",
|
||||
price: "$6,200",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/wild-animals-collection_1308-331.jpg?_wi=1",
|
||||
imageAlt: "Luxury Big Five safari experience",
|
||||
},
|
||||
id: "4", name: "Big Five Luxury Safari", price: "$6,200", imageSrc: "http://img.b2bpic.net/free-vector/wild-animals-collection_1308-331.jpg", imageAlt: "Luxury Big Five safari experience"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Mount Kilimanjaro Trek",
|
||||
price: "$2,800",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/view-spectacular-nature-landscape_23-2150763652.jpg?_wi=1",
|
||||
imageAlt: "Mount Kilimanjaro expedition",
|
||||
},
|
||||
id: "5", name: "Mount Kilimanjaro Trek", price: "$2,800", imageSrc: "http://img.b2bpic.net/free-photo/view-spectacular-nature-landscape_23-2150763652.jpg", imageAlt: "Mount Kilimanjaro expedition"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Zanzibar Beach Holiday",
|
||||
price: "$3,500",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/maldives-island_1203-7353.jpg?_wi=1",
|
||||
imageAlt: "Luxury Zanzibar beach resort",
|
||||
},
|
||||
id: "6", name: "Zanzibar Beach Holiday", price: "$3,500", imageSrc: "http://img.b2bpic.net/free-photo/maldives-island_1203-7353.jpg", imageAlt: "Luxury Zanzibar beach resort"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -193,36 +158,35 @@ export default function HomePage() {
|
||||
animationType="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ icon: Mountain, title: "Serengeti National Park", description: "Experience the Great Migration and encounter the Big Five in their natural habitat." },
|
||||
{ icon: Droplet, title: "Ngorongoro Crater", description: "The world's largest intact caldera with incredible biodiversity and stunning landscapes." },
|
||||
{ icon: Trees, title: "Tarangire National Park", description: "Famous for its massive elephant populations and scenic landscapes along the river." },
|
||||
{ icon: Zap, title: "Mount Kilimanjaro", description: "Africa's highest peak offers an epic trekking experience with breathtaking views." },
|
||||
{ icon: Waves, title: "Zanzibar Island", description: "Pristine beaches, turquoise waters, and luxury resorts for the perfect tropical escape." },
|
||||
{ icon: Palmtree, title: "Lake Tanganyika", description: "Africa's deepest lake offering unique wildlife, diving, and remote exploration." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="zanzibar" data-section="zanzibar" className="bg-gradient-to-t from-transparent to-accent/5">
|
||||
<ProductCardThree
|
||||
title="Zanzibar Beach Retreats"
|
||||
description="Paradise awaits. Experience luxury island living with pristine beaches, turquoise waters, and world-class resorts."
|
||||
tag="Tropical Paradise"
|
||||
tagIcon={Waves}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={true}
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
products={[
|
||||
{
|
||||
icon: Mountain,
|
||||
title: "Serengeti National Park",
|
||||
description: "Experience the Great Migration and encounter the Big Five in their natural habitat.",
|
||||
},
|
||||
id: "1", name: "Zanzibar Luxury Beach Resort", price: "$450/night", imageSrc: "http://img.b2bpic.net/free-photo/couple-talking-drinking-coconut-milk-by-pool-vacation_23-2149369768.jpg", imageAlt: "Luxury beachfront resort in Zanzibar"},
|
||||
{
|
||||
icon: Droplet,
|
||||
title: "Ngorongoro Crater",
|
||||
description: "The world's largest intact caldera with incredible biodiversity and stunning landscapes.",
|
||||
},
|
||||
id: "2", name: "Spice Island Experience", price: "$3,200", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-meal-cooking-process-while-camping_23-2148301419.jpg", imageAlt: "Zanzibar spice plantation tour"},
|
||||
{
|
||||
icon: Trees,
|
||||
title: "Tarangire National Park",
|
||||
description: "Famous for its massive elephant populations and scenic landscapes along the river.",
|
||||
},
|
||||
id: "3", name: "Private Beach Villa Package", price: "$800/night", imageSrc: "http://img.b2bpic.net/free-photo/portrait-luxury-looking-woman-red-orange-evening-dress-rich-hotel_343596-3596.jpg", imageAlt: "Private luxury beach villa Zanzibar"},
|
||||
{
|
||||
icon: Zap,
|
||||
title: "Mount Kilimanjaro",
|
||||
description: "Africa's highest peak offers an epic trekking experience with breathtaking views.",
|
||||
},
|
||||
{
|
||||
icon: Waves,
|
||||
title: "Zanzibar Island",
|
||||
description: "Pristine beaches, turquoise waters, and luxury resorts for the perfect tropical escape.",
|
||||
},
|
||||
{
|
||||
icon: PalmTree,
|
||||
title: "Lake Tanganyika",
|
||||
description: "Africa's deepest lake offering unique wildlife, diving, and remote exploration.",
|
||||
},
|
||||
id: "4", name: "Sunset Dhow Cruise", price: "$180", imageSrc: "http://img.b2bpic.net/free-photo/motorboats-parked-water-by-water-with-sunset-city-visible_181624-29150.jpg", imageAlt: "Traditional dhow sunset cruise Zanzibar"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -238,59 +202,23 @@ export default function HomePage() {
|
||||
showRating={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Mitchell",
|
||||
handle: "@sarahmitchell",
|
||||
testimonial: "SK Tours provided the most incredible safari experience of my life. The guides were knowledgeable, the camps were luxurious, and every moment was magical. Highly recommend!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-traveller-happy-be-outdoors_23-2148588534.jpg?_wi=1",
|
||||
imageAlt: "professional woman portrait headshot smile",
|
||||
},
|
||||
id: "1", name: "Sarah Mitchell", handle: "@sarahmitchell", testimonial: "SK Tours provided the most incredible safari experience of my life. The guides were knowledgeable, the camps were luxurious, and every moment was magical. Highly recommend!", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-traveller-happy-be-outdoors_23-2148588534.jpg", imageAlt: "Professional woman portrait headshot smile"},
|
||||
{
|
||||
id: "2",
|
||||
name: "James Richardson",
|
||||
handle: "@jamesrich",
|
||||
testimonial: "From the moment we arrived to the moment we left, every detail was perfectly arranged. The professionalism and passion of the SK Tours team is unmatched.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-traveler-hiking_1098-15180.jpg?_wi=1",
|
||||
imageAlt: "professional man portrait headshot business",
|
||||
},
|
||||
id: "2", name: "James Richardson", handle: "@jamesrich", testimonial: "From the moment we arrived to the moment we left, every detail was perfectly arranged. The professionalism and passion of the SK Tours team is unmatched.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-traveler-hiking_1098-15180.jpg", imageAlt: "Professional man portrait headshot business"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Elena Rodriguez",
|
||||
handle: "@eleanarod",
|
||||
testimonial: "Zanzibar was absolutely stunning thanks to SK Tours. The beach resorts were world-class and the local experiences were authentic and unforgettable.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-bikini-hat-looking-camera-beach-sunshine_107420-9983.jpg?_wi=1",
|
||||
imageAlt: "woman traveler portrait beach background",
|
||||
},
|
||||
id: "3", name: "Elena Rodriguez", handle: "@eleanarod", testimonial: "Zanzibar was absolutely stunning thanks to SK Tours. The beach resorts were world-class and the local experiences were authentic and unforgettable.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-bikini-hat-looking-camera-beach-sunshine_107420-9983.jpg", imageAlt: "Woman traveler portrait beach background"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Chen",
|
||||
handle: "@dchen",
|
||||
testimonial: "Worth every penny. The Big Five safari was a once-in-a-lifetime experience. The photography opportunities were incredible, and the luxury lodges exceeded all expectations.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg?_wi=1",
|
||||
imageAlt: "male professional portrait photography",
|
||||
},
|
||||
id: "4", name: "David Chen", handle: "@dchen", testimonial: "Worth every penny. The Big Five safari was a once-in-a-lifetime experience. The photography opportunities were incredible, and the luxury lodges exceeded all expectations.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg", imageAlt: "Male professional portrait photography"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Victoria Thompson",
|
||||
handle: "@vthompson",
|
||||
testimonial: "SK Tours combines adventure with comfort in a way I've never experienced. The attention to detail and personalized service made our trip absolutely perfect.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-lady_1163-3171.jpg?_wi=1",
|
||||
imageAlt: "woman executive professional portrait",
|
||||
},
|
||||
id: "5", name: "Victoria Thompson", handle: "@vthompson", testimonial: "SK Tours combines adventure with comfort in a way I've never experienced. The attention to detail and personalized service made our trip absolutely perfect.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-business-lady_1163-3171.jpg", imageAlt: "Woman executive professional portrait"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Marco Rossi",
|
||||
handle: "@marcorossi",
|
||||
testimonial: "As a seasoned traveler, I can say SK Tours is among the best tourism operators I've encountered. Professionalism, safety, and unforgettable experiences guaranteed.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-mature-businessman-looking-away_23-2147955371.jpg?_wi=1",
|
||||
imageAlt: "man professional portrait businessman",
|
||||
},
|
||||
id: "6", name: "Marco Rossi", handle: "@marcorossi", testimonial: "As a seasoned traveler, I can say SK Tours is among the best tourism operators I've encountered. Professionalism, safety, and unforgettable experiences guaranteed.", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-mature-businessman-looking-away_23-2147955371.jpg", imageAlt: "Man professional portrait businessman"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -305,45 +233,21 @@ export default function HomePage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What is the best time to visit Tanzania?",
|
||||
content: "The best time for safari is June to October during the dry season when wildlife is concentrated around water sources. Zanzibar is beautiful year-round, but November to March offers the warmest weather and calmest seas.",
|
||||
},
|
||||
id: "1", title: "What is the best time to visit Tanzania?", content: "The best time for safari is June to October during the dry season when wildlife is concentrated around water sources. Zanzibar is beautiful year-round, but November to March offers the warmest weather and calmest seas."},
|
||||
{
|
||||
id: "2",
|
||||
title: "What should I pack for a safari?",
|
||||
content: "Pack neutral-colored clothing, comfortable walking shoes, sunscreen, binoculars, and a camera. Bring light layers as it can be cool at dawn and dusk. Our team will provide a detailed packing list with your booking confirmation.",
|
||||
},
|
||||
id: "2", title: "What should I pack for a safari?", content: "Pack neutral-colored clothing, comfortable walking shoes, sunscreen, binoculars, and a camera. Bring light layers as it can be cool at dawn and dusk. Our team will provide a detailed packing list with your booking confirmation."},
|
||||
{
|
||||
id: "3",
|
||||
title: "Do you offer family-friendly safari experiences?",
|
||||
content: "Absolutely! We have family packages with age-appropriate activities, experienced guides skilled with children, and luxury accommodations suitable for families. We can customize itineraries to match your family's interests.",
|
||||
},
|
||||
id: "3", title: "Do you offer family-friendly safari experiences?", content: "Absolutely! We have family packages with age-appropriate activities, experienced guides skilled with children, and luxury accommodations suitable for families. We can customize itineraries to match your family's interests."},
|
||||
{
|
||||
id: "4",
|
||||
title: "What is included in the safari package prices?",
|
||||
content: "Our packages typically include accommodation, meals, game drives, professional guides, and park fees. Premium packages also include flights, transfers, and exclusive experiences. Full details are provided with each package.",
|
||||
},
|
||||
id: "4", title: "What is included in the safari package prices?", content: "Our packages typically include accommodation, meals, game drives, professional guides, and park fees. Premium packages also include flights, transfers, and exclusive experiences. Full details are provided with each package."},
|
||||
{
|
||||
id: "5",
|
||||
title: "How many days minimum should I book?",
|
||||
content: "We recommend a minimum of 4-5 days for a meaningful safari experience. However, we offer flexible packages from 2 days to extended 10+ day trips. Longer stays allow deeper exploration and higher wildlife viewing odds.",
|
||||
},
|
||||
id: "5", title: "How many days minimum should I book?", content: "We recommend a minimum of 4-5 days for a meaningful safari experience. However, we offer flexible packages from 2 days to extended 10+ day trips. Longer stays allow deeper exploration and higher wildlife viewing odds."},
|
||||
{
|
||||
id: "6",
|
||||
title: "What about travel insurance and vaccinations?",
|
||||
content: "We strongly recommend travel insurance. Vaccinations like yellow fever, malaria prophylaxis, and routine immunizations are typically recommended. Consult your doctor 4-6 weeks before departure. We'll provide detailed health information upon booking.",
|
||||
},
|
||||
id: "6", title: "What about travel insurance and vaccinations?", content: "We strongly recommend travel insurance. Vaccinations like yellow fever, malaria prophylaxis, and routine immunizations are typically recommended. Consult your doctor 4-6 weeks before departure. We'll provide detailed health information upon booking."},
|
||||
{
|
||||
id: "7",
|
||||
title: "Are your guides certified and experienced?",
|
||||
content: "Yes, all our guides are certified by the Tanzania Tourist Board and have 5+ years of experience. They undergo regular training in wildlife biology, safety, and hospitality to ensure you receive world-class service.",
|
||||
},
|
||||
id: "7", title: "Are your guides certified and experienced?", content: "Yes, all our guides are certified by the Tanzania Tourist Board and have 5+ years of experience. They undergo regular training in wildlife biology, safety, and hospitality to ensure you receive world-class service."},
|
||||
{
|
||||
id: "8",
|
||||
title: "Can I combine safari and Zanzibar in one trip?",
|
||||
content: "Perfectly! Many guests combine a safari with a Zanzibar beach retreat. We offer curated combination packages that include flights between destinations, creating a seamless and unforgettable experience.",
|
||||
},
|
||||
id: "8", title: "Can I combine safari and Zanzibar in one trip?", content: "Perfectly! Many guests combine a safari with a Zanzibar beach retreat. We offer curated combination packages that include flights between destinations, creating a seamless and unforgettable experience."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -352,7 +256,7 @@ export default function HomePage() {
|
||||
<ContactText
|
||||
text="Ready to embark on the adventure of a lifetime? Let's plan your perfect Tanzania experience."
|
||||
animationType="entrance-slide"
|
||||
background={{ variant: "aurora" }}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Plan Your Safari", href: "/booking" },
|
||||
|
||||
Reference in New Issue
Block a user