first commit

This commit is contained in:
2025-12-30 15:03:19 +08:00
commit c735c36009
902 changed files with 83591 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import React from 'react';
import { Head } from '@inertiajs/react';
export default function Welcome() {
return (
<div className="flex items-center justify-center min-h-screen bg-gray-100">
<Head title="Welcome" />
<div className="p-8 bg-white rounded-lg shadow-lg">
<h1 className="text-4xl font-bold text-blue-600">
Koori ERP
</h1>
<p className="mt-4 text-gray-600">
React + Inertia + Laravel Integration Successful!
</p>
</div>
</div>
);
}