22 lines
486 B
TypeScript
22 lines
486 B
TypeScript
import { Navigation } from "@/components/navigation"
|
|
import { ArtistPortfolio } from "@/components/artist-portfolio"
|
|
import { Footer } from "@/components/footer"
|
|
|
|
interface ArtistPageProps {
|
|
params: {
|
|
id: string
|
|
}
|
|
}
|
|
|
|
export default function ArtistPage({ params }: ArtistPageProps) {
|
|
return (
|
|
<main className="min-h-screen">
|
|
<Navigation />
|
|
<div className="pt-16">
|
|
<ArtistPortfolio artistId={params.id} />
|
|
</div>
|
|
<Footer />
|
|
</main>
|
|
)
|
|
}
|