Technology is at the heart of everything we do
Empowering Partnerships with Innovation
Seamless Integration for Enhanced Collaboration
Sejour Software
Our Sejour software offers a streamlined solution for managing bookings and client interactions.
Upcoming
Integrated Booking Engine (IBE) for excursions and transfers, providing a wider range of services in one platform.
Analytics and Reporting
Advanced Analytics and Reporting Our Sejour software includes a built-in analytics dashboard, providing real-time insights into booking trends, customer preferences, and sales performance.
Powerful APIs
API integration ensures seamless communication and data exchange for real-time updates and smoother workflows.
import { useState } from 'react';
import { Switch } from '@headlessui/react';
function Example() {
const [enabled, setEnabled] = useState(true);
return (
<form action="/notification-settings" method="post">
<Switch checked={enabled} onChange={setEnabled} name="notifications">
{/* ... */}
</Switch>
<button>Submit</button>
</form>
);
}