import { getPage } from "@/lib/getPage";
import ContactForm from "@/components/ContactForm";

export default async function ContactPageFR() {
  const data = await getPage("contact");

  const content = data?.content?.fr;

  return (
    <div className="p-10 text-black max-w-3xl">
      <h1 className="text-5xl font-bold mb-6">
        {content?.title}
      </h1>

      <p className="text-lg text-gray-700 mb-6">
        {content?.content}
      </p>

      <ContactForm />
    </div>
  );
}