// app/[lng]/auth/reset-password/components/InvalidTokenPage.tsx import { Button } from '@/components/ui/button'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { XCircle } from 'lucide-react'; import Link from 'next/link'; interface Props { expired: boolean; error?: string; } export default function InvalidTokenPage({ expired, error }: Props) { return (
링크 오류 {expired ? '재설정 링크가 만료되었습니다. 새로운 재설정 요청을 해주세요.' : error || '유효하지 않은 재설정 링크입니다.'}
); }