first commit
This commit is contained in:
18
resources/js/Pages/Welcome.tsx
Normal file
18
resources/js/Pages/Welcome.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user