Install Breeze
This commit is contained in:
26
resources/js/Pages/Dashboard.jsx
Normal file
26
resources/js/Pages/Dashboard.jsx
Normal file
@@ -0,0 +1,26 @@
|
||||
import AuthenticatedLayout from '@/Layouts/AuthenticatedLayout';
|
||||
import { Head } from '@inertiajs/react';
|
||||
|
||||
export default function Dashboard() {
|
||||
return (
|
||||
<AuthenticatedLayout
|
||||
header={
|
||||
<h2 className="text-xl font-semibold leading-tight text-gray-800 dark:text-gray-200">
|
||||
Dashboard
|
||||
</h2>
|
||||
}
|
||||
>
|
||||
<Head title="Dashboard" />
|
||||
|
||||
<div className="py-12">
|
||||
<div className="mx-auto max-w-7xl sm:px-6 lg:px-8">
|
||||
<div className="overflow-hidden bg-white shadow-sm sm:rounded-lg dark:bg-gray-800">
|
||||
<div className="p-6 text-gray-900 dark:text-gray-100">
|
||||
You're logged in!
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</AuthenticatedLayout>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user