// App entry — mounts the full DigitallGood site

function App() {
  return (
    <div className="relative">
      <Navbar />
      <main>
        <Hero />
        <ProblemSolution />
        <Portfolio />
        <Sobre />
        <Servicos />
        <Processo />
        <CTAFinal />
      </main>
      <Footer />
      <FloatingWA />
    </div>
  );
}

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