Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1599ef92ba | |||
| 0cff89fe81 | |||
| a0a4fe1a33 | |||
| b653f07f64 | |||
| ea4427e297 | |||
| 38adf21b4d | |||
| 2f9b86cdbe | |||
| ae30e1c5c7 |
@@ -11,7 +11,7 @@ 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, MapPin, Award, Sparkles, Mountain, Droplet, Trees, Zap, Waves, Palmtree, Quote } from "lucide-react";
|
||||
import { Compass, MapPin, Award, Sparkles, Mountain, Droplet, Trees, Zap, Waves, Palmtree, Quote, ShoppingCart } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
@@ -88,16 +88,16 @@ export default function HomePage() {
|
||||
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"
|
||||
tag="Explore Tanzania — Limited availability"
|
||||
tagIcon={Compass}
|
||||
enableKpiAnimation={true}
|
||||
kpis={[
|
||||
{ value: "20+", label: "Certified Expert Guides" },
|
||||
{ value: "95%", label: "Safari Success Rate" },
|
||||
{ value: "1000+", label: "Wildlife Encounters" },
|
||||
{ value: "4.9★", label: "Average Guest Rating" },
|
||||
{ value: "20+", label: "Years Local Expertise" },
|
||||
{ value: "5,000+", label: "Trusted Travelers" },
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Book Your Safari", href: "/booking" },
|
||||
{ text: "Book Your Safari Today", 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"
|
||||
@@ -134,17 +134,23 @@ 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", 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", priceButtonProps: { text: "Book Now", href: "/booking?package=serengeti" }
|
||||
},
|
||||
{
|
||||
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: "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", priceButtonProps: { text: "Book Now", href: "/booking?package=ngorongoro" }
|
||||
},
|
||||
{
|
||||
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: "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", priceButtonProps: { text: "Book Now", href: "/booking?package=tarangire" }
|
||||
},
|
||||
{
|
||||
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: "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", priceButtonProps: { text: "Book Now", href: "/booking?package=bigfive" }
|
||||
},
|
||||
{
|
||||
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: "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", priceButtonProps: { text: "Book Now", href: "/booking?package=kilimanjaro" }
|
||||
},
|
||||
{
|
||||
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"},
|
||||
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", priceButtonProps: { text: "Book Now", href: "/booking?package=zanzibar" }
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -180,13 +186,17 @@ export default function HomePage() {
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
products={[
|
||||
{
|
||||
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"},
|
||||
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", priceButtonProps: { text: "Book Now", href: "/booking?package=zanzibar-resort" }
|
||||
},
|
||||
{
|
||||
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"},
|
||||
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", priceButtonProps: { text: "Book Now", href: "/booking?package=spice-island" }
|
||||
},
|
||||
{
|
||||
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"},
|
||||
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", priceButtonProps: { text: "Book Now", href: "/booking?package=private-villa" }
|
||||
},
|
||||
{
|
||||
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"},
|
||||
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", priceButtonProps: { text: "Book Now", href: "/booking?package=dhow-cruise" }
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -235,11 +245,11 @@ export default function HomePage() {
|
||||
{
|
||||
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 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: "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: "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: "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: "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: "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."},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user