2025-12-30 15:03:19 +08:00
|
|
|
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">
|
2026-01-15 16:55:24 +08:00
|
|
|
Star ERP
|
2025-12-30 15:03:19 +08:00
|
|
|
</h1>
|
|
|
|
|
<p className="mt-4 text-gray-600">
|
|
|
|
|
React + Inertia + Laravel Integration Successful!
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|