bondingcurve-website/app/page.tsx

24 lines
749 B
TypeScript

import { Navigation } from "@/components/navigation"
import { HeroSection } from "@/components/hero-section"
import { AboutSection } from "@/components/about-section"
import { ResearchSection } from "@/components/research-section"
import { LibrarySection } from "@/components/library-section"
import { OpenSourceSection } from "@/components/open-source-section"
import { Footer } from "@/components/footer"
import { CursorTrails } from "@/components/cursor-trails"
export default function Home() {
return (
<main className="min-h-screen">
<CursorTrails />
<Navigation />
<HeroSection />
<AboutSection />
<ResearchSection />
<LibrarySection />
<OpenSourceSection />
<Footer />
</main>
)
}