Spaces:
Sleeping
Sleeping
| 'use client'; | |
| import { Button } from '@/components/ui/button'; | |
| import { TriangleAlertIcon } from 'lucide-react'; | |
| export default function ErrorPage() { | |
| function goTop() { | |
| window.location.href = '/'; | |
| } | |
| return ( | |
| <div className="flex grow flex-col items-center justify-center space-y-4"> | |
| <div className="flex items-center space-x-4"> | |
| <div> | |
| <TriangleAlertIcon className="size-8 text-[#DA2A2A]" /> | |
| </div> | |
| <div>γ¨γ©γΌγ«γͺγγΎγγγζεγγγγη΄γγ¦γγ γγγ</div> | |
| </div> | |
| <Button variant="gradient" onClick={goTop}> | |
| γγγγ«ζ»γ | |
| </Button> | |
| </div> | |
| ); | |
| } | |