18 lines
656 B
TypeScript
18 lines
656 B
TypeScript
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 (
|
|
<div className="min-h-screen bg-[#E3EBE8] text-[#3D4E4B] font-sans">
|
|
<Head title="Xxx" />
|
|
<div className="max-w-7xl mx-auto px-6 py-12">
|
|
<h1 className="text-3xl font-bold mb-8">Xxx Page</h1>
|
|
<div className="bg-white rounded-lg shadow-sm p-6">
|
|
<p>This is the new xxx page content.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
} |