import { Head } from '@inertiajs/react'; import { PageProps } from '@/types'; import React from 'react'; // Minimal page template following existing patterns export default function Xxx({ auth }: PageProps) { return (

Xxx Page

This is the new xxx page content.

); }