import Link from "next/link";

export function SimplePage({ eyebrow, title, children }: { eyebrow: string; title: string; children: React.ReactNode }) {
  return (
    <section className="section">
      <div className="site-container max-w-3xl">
        <p className="eyebrow">{eyebrow}</p>
        <h1 className="mt-2 text-5xl">{title}</h1>
        <div className="prose prose-invert mt-6 max-w-none text-kiln-milk/78 prose-a:text-kiln-flame">{children}</div>
        <Link href="/" className="button button-secondary mt-8">На главную</Link>
      </div>
    </section>
  );
}
