import HeaderBackground from "@/components/shared/PageTitle/Index";
import PartExperienceSection from "@/components/sections/ParticipatePage/PartExperienceSection/Index";
import FaqsParticipateSection from "@/components/sections/ParticipatePage/FaqsParticipateSection/Index";
import { getTranslations } from "next-intl/server";
import CallParticipationSection from "@/components/sections/ParticipatePage/CallParticipationSection";

export default async function ParticipatePage() {
  const t = await getTranslations("ParticipatePage");

  return (
    <>
      <HeaderBackground title={t("pageTitle")} />
      <CallParticipationSection />
      <PartExperienceSection />
      <FaqsParticipateSection />
    </>
  );
}
