
const {
  LoRANav, LoRAHero,
  AbstractSection, ProblemSection, MethodologySection,
  ResultsSection,
  ParetoSection, ContributionsSection, FutureWorkSection, ReferencesSection,
} = window;

function App() {
  return (
    <div>
      <LoRANav />
      <LoRAHero />
      <AbstractSection />
      <ProblemSection />
      <MethodologySection />
      <ResultsSection />
      <ParetoSection />
      <ContributionsSection />
      <FutureWorkSection />
      <ReferencesSection />
    </div>
  );
}

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