Luxury safari booking platform specializing in East African experiences.
A premium travel booking platform designed for Severius Adventures & Travel. The site showcases luxury safari packages across Kenya, Uganda, and Tanzania. It features a robust tour filtering system, detailed itinerary displays, and a seamless booking inquiry process. The design emphasizes the beauty of African landscapes with high-quality imagery and an elegant user interface.
Comprehensive catalog of safari packages with filtering by destination, duration, and price.
Detailed day-by-day itinerary breakdowns with rich media integration.
Fully optimized experience across all devices, ensuring travelers can book on the go.
WhatsApp and email integration for immediate customer support and personalized booking.
export const filterTours = (tours: Tour[], filters: FilterState) => {
return tours.filter(tour => {
const matchesDest = !filters.destination || tour.country === filters.destination;
const matchesPrice = tour.price >= filters.minPrice && tour.price <= filters.maxPrice;
const matchesDuration = tour.days >= filters.minDays;
return matchesDest && matchesPrice && matchesDuration;
});
}