2025-09-16 21:36:20 -06:00

14 lines
342 B
TypeScript

import { Navigation } from "@/components/navigation"
import { ArtistsPageSection } from "@/components/artists-page-section"
import { Footer } from "@/components/footer"
export default function ArtistsPage() {
return (
<main className="min-h-screen">
<Navigation />
<ArtistsPageSection />
<Footer />
</main>
)
}