import { LabAndCta } from "@/components/LabAndCta";
import { MotionLanding } from "@/components/MotionLanding";
import { SiteHeader } from "@/components/SiteHeader";

export default function Home() {
  return (
    <>
      <a className="skip-link" href="#main-content">
        Skip to content
      </a>
      <SiteHeader />
      <MotionLanding />
      <LabAndCta />
    </>
  );
}
