19 lines
606 B
TypeScript
19 lines
606 B
TypeScript
|
|
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>
|
||
|
|
);
|
||
|
|
}
|