Nicholai ad0e34bd7e
Some checks failed
CI / build-and-test (pull_request) Has been cancelled
updated section scrolling
2025-09-26 00:34:25 -06:00

34 lines
1.0 KiB
TypeScript

import { Navigation } from "@/components/navigation"
import { ScrollProgress } from "@/components/scroll-progress"
import { ScrollToSection } from "@/components/scroll-to-section"
import { LenisProvider } from "@/components/smooth-scroll-provider"
import { HeroSection } from "@/components/hero-section"
import { ArtistsSection } from "@/components/artists-section"
import { ServicesSection } from "@/components/services-section"
import { ContactSection } from "@/components/contact-section"
import { Footer } from "@/components/footer"
export default function HomePage() {
return (
<LenisProvider>
<main className="min-h-screen">
<ScrollProgress />
<ScrollToSection />
<Navigation />
<div id="home">
<HeroSection />
</div>
<div id="artists">
<ArtistsSection />
</div>
<div id="services">
<ServicesSection />
</div>
<div id="contact">
<ContactSection />
</div>
<Footer />
</main>
</LenisProvider>
)
}