united-tattoo/app/page.tsx

34 lines
1011 B
TypeScript

import { Navigation } from "@/components/navigation"
import { ScrollProgress } from "@/components/scroll-progress"
import { ScrollToSection } from "@/components/scroll-to-section"
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"
import { MobileBookingBar } from "@/components/mobile-booking-bar"
export default function HomePage() {
return (
<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 />
<MobileBookingBar />
</main>
)
}