Back to Portfolio

Severius Adventures & Travel

Luxury safari booking platform specializing in East African experiences.

Next.js
React
Framer Motion
Tailwind CSS
Node.js

Desktop View

Mobile View

Overview

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.

5+ Countries
Destinations
20+
Tours
Premium
Experience

Key Features

Tour Booking System

Comprehensive catalog of safari packages with filtering by destination, duration, and price.

Dynamic Itineraries

Detailed day-by-day itinerary breakdowns with rich media integration.

Responsive Design

Fully optimized experience across all devices, ensuring travelers can book on the go.

Direct Inquiry Integration

WhatsApp and email integration for immediate customer support and personalized booking.

Under the Hood

tour-filter.ts
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;
  });
}