nomadweb/frontend/src/app/not-found.tsx
eric bf654f76e6 Add visa wizard, coworking, packing, season guide, and UX polish
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-28 23:05:48 -05:00

23 lines
838 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Link from "next/link";
import SiteShell from "@/components/SiteShell";
export default function NotFound() {
return (
<SiteShell>
<div className="not-found-page">
<div className="not-found-compass" aria-hidden="true">
<span className="compass-ring">🧭</span>
<span className="compass-plane">✈️</span>
</div>
<h1 className="not-found-title">404</h1>
<p>哎呀,这片海域没有标记的岛屿</p>
<p className="not-found-sub">你可能走错了航线,让我们帮你回到正轨</p>
<div className="not-found-actions">
<Link href="/" className="btn btn-primary">返回首页 🏠</Link>
<Link href="/#destinations" className="btn btn-ghost">探索目的地 🌍</Link>
</div>
</div>
</SiteShell>
);
}