import { Head } from "@inertiajs/react"; interface HomeProps { auth: Record; hotelName: string; } export default function Home({ hotelName }: HomeProps) { return ( <>

Welkom bij {hotelName}

Dit is een Inertia.js pagina — zelfde layout, zelfde Tailwind, zelfde stijlen.

Naar huis
); }