All files / laravel-saas/resources/js/Pages Analytics.tsx

0% Statements 0/26
0% Branches 0/1
0% Functions 0/1
0% Lines 0/26

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>
    );
}