From e22bcde15efb2bef46f8af05299d2a55dfadeaf6 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:30:06 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 182 ++++++++++++++++++++++------------------- 1 file changed, 97 insertions(+), 85 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 311f079..84e1068 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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 ( +
+ +
+
-
- +
From 262b4d35b9f77671210bf5b6f3d55064c8ead2dc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:30:07 +0000 Subject: [PATCH 2/4] Update src/app/booking/page.tsx --- src/app/booking/page.tsx | 246 +++++++++++++-------------------------- 1 file changed, 82 insertions(+), 164 deletions(-) diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx index b16b7c2..a9146b3 100644 --- a/src/app/booking/page.tsx +++ b/src/app/booking/page.tsx @@ -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 ( -
+
-
+
-
- +
-
+
-
+
From 067f9b61d36ea6ac698213facd2c2269c75ccfe4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:30:07 +0000 Subject: [PATCH 3/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 178 ++++++++++++++++++++------------------- 1 file changed, 90 insertions(+), 88 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 61a1b9e..cc0d740 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -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 ( -
+
-
- +
-
- + +
+ +
+
From 7fd504f14933c26643e8f78669ef4028a7f74459 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 07:30:07 +0000 Subject: [PATCH 4/4] Update src/app/page.tsx --- src/app/page.tsx | 280 ++++++++++++++++------------------------------- 1 file changed, 92 insertions(+), 188 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index e4f943a..c32e4ef 100644 --- a/src/app/page.tsx +++ b/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 (
-
+
@@ -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." }, + ]} + /> +
+ +
+
@@ -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"}, ]} />
@@ -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."}, ]} />
@@ -352,7 +256,7 @@ export default function HomePage() {