import Link from "next/link";

export default function PostNotFound() {
  return (
    <main className="mx-auto max-w-lg px-4 py-16 text-center sm:px-8 sm:py-20">
      <p className="font-ctkp-display text-2xl font-semibold text-stone-100">Không có thiên này</p>
      <p className="mt-4 text-sm leading-relaxed text-stone-500">
        Thiên này có thể chưa ấn định, đã gỡ, hoặc đường lật không khớp tên trên sổ.
      </p>
      <Link href="/posts" className="ctkp-btn-primary mt-10 px-6 py-3">
        Về sổ bài
      </Link>
    </main>
  );
}
