feat: inisialisasi project kit v2

This commit is contained in:
2026-05-21 15:57:29 +07:00
commit d4fd478e1f
271 changed files with 35300 additions and 0 deletions
+18
View File
@@ -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>
);
}