18 lines
556 B
TypeScript
18 lines
556 B
TypeScript
import Hero from "@/components/Hero";
|
|
import Footer from "@/components/Footer";
|
|
import { useLang } from "@/lib/useLang";
|
|
|
|
export default function NotFound() {
|
|
const lang = useLang();
|
|
return (
|
|
<main className="shell">
|
|
<Hero back lang={lang} />
|
|
<p className="mt-16 text-center font-impact text-[40px] text-[var(--green)]">404</p>
|
|
<p className="mt-2 text-center text-[14px] text-white/60">
|
|
{lang === "en" ? "Page not found" : "페이지를 찾을 수 없습니다"}
|
|
</p>
|
|
<Footer lang={lang} />
|
|
</main>
|
|
);
|
|
}
|