// App root — mounts all sections
const App = () => (
  <>
    <Hero/>
    <How/>
    <Majstori/>
    <Trgovci/>
    <Trust/>
    <Brandovi/>
    <FAQ/>
    <CTA/>
  </>
);

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