// SciPHR.io homepage shell — composes nav + sections via SiteShell.

function App() {
  return (
    <SiteShell current="home">
      <Hero />
      <Pillars />
      <AuthAndTelemetry />
      <Market />
      <Enterprise />
      <Quotes />
      <Forms />
      <Founder />
    </SiteShell>
  );
}

const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<App />);
