Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | import AuthenticatedLayout from '@/Components/Layout/AuthenticatedLayout'; import { Card, CardContent, CardHeader } from '@/Components/ui/Card'; import { Head } from '@inertiajs/react'; export default function Analytics() { return ( <AuthenticatedLayout title="Analytics" header={ <div> <h1 className="text-2xl font-bold text-gray-900">Analytics</h1> <p className="text-sm text-gray-600"> View your application analytics and insights </p> </div> } > <Head title="Analytics" /> <div className="space-y-6"> <Card> <CardHeader> <h3 className="text-lg font-semibold text-gray-900">Analytics Dashboard</h3> </CardHeader> <CardContent> <p className="text-gray-600">Analytics features coming soon...</p> </CardContent> </Card> </div> </AuthenticatedLayout> ); } |