import { Card, CardContent } from '@admin/components/ui/card'
import { Button } from '@admin/components/ui/button'
import { type ReactNode } from 'react'
import { Head } from '@inertiajs/react'

function ErrorPage() {
    return (
        <>
            <Head title="Error" />

            <div className="flex min-h-screen items-center justify-center p-6 bg-background">
                <Card className="max-w-md w-full text-center">
                    <CardContent className="space-y-4">
                        <h1 className="text-4xl font-bold text-red-600">Oops!</h1>
                        <p className="text-lg text-muted-foreground">
                            Something went wrong. Please try again later.
                        </p>
                        <Button
                            onClick={() => window.location.href = '/'}
                            variant="default"
                        >
                            Go to Home
                        </Button>
                    </CardContent>
                </Card>
            </div>
        </>
    )
}

export default ErrorPage
