feat: inisialisasi project kit v2
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user