import ProgramsEventsSection from "@/components/sections/ProgramsPage/ProgramsEventsSection/Index";
import HeaderBackground from "@/components/shared/PageTitle/Index";
import { getTranslations } from "next-intl/server";

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

  return (
    <>
      <HeaderBackground title={t("pageTitle")} />
      <ProgramsEventsSection />
    </>
  );
}
