Self Drive
Rental Agreement

Click below for the rental agreement for imobiliti.

Create a free website with Framer, the website builder loved by startups, designers and agencies.

import { Override } from "framer" export function BackButton(): Override { return { onClick: () => { // Checks if there is history to go back to, otherwise redirects to fallback (e.g., /home) if (window.history.length > 1) { window.history.back() } else { window.location.href = "/home" } }, } }