import { Suspense } from 'react';
import LandingPageShell from './components/landing/LandingPageShell';

export default function Home() {
  return (
    <Suspense fallback={null}>
      <LandingPageShell />
    </Suspense>
  );
}
