FE_Test / app /error /page.tsx
GitHub Actions
Deploy from GitHub Actions [test] - 2025-10-31 10:18:25
5f2aab6
'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>
);
}