import Quiz from "@/components/quiz";
import { QUIZ_STEPS } from "@/config/data";
import { useIsClient, useTheme } from "@/hooks";

export default function HomePage() {
  const isClient = useIsClient();

  useTheme({ scrollTransition: true });

  if (isClient)
    return (
      <>
        <Quiz sections={QUIZ_STEPS} />
      </>
    );
}
