import HeroSection from "@/components/home/HeroSection";
import AboutSection from "@/components/home/AboutSection";
import ScheduleSection from "@/components/home/ScheduleSection";
import DojoKunSection from "@/components/home/DojoKunSection";
import BeltSystem from "@/components/home/BeltSystem";
import KidsSection from "@/components/home/KidsSection";
import InstagramFeed from "@/components/home/InstagramFeed";
import TrialCallToAction from "@/components/home/TrialCallToAction";
import { getTrainingSessions } from "@/lib/data";

export default async function Home() {
  const sessions = await getTrainingSessions();

  return (
    <>
      <HeroSection />
      <AboutSection />
      <ScheduleSection sessions={sessions} />
      <DojoKunSection />
      <BeltSystem />
      <KidsSection />
      <InstagramFeed />
      <TrialCallToAction />
    </>
  );
}
