Add portfolio thingies
This commit is contained in:
14
src/app/(normal)/artworks/page.tsx
Normal file
14
src/app/(normal)/artworks/page.tsx
Normal file
@ -0,0 +1,14 @@
|
||||
import ColorMasonryGallery from "@/components/portfolio/ColorMasonryGallery";
|
||||
|
||||
export default function PortfolioPage() {
|
||||
return (
|
||||
<div className="mx-auto w-full max-w-6xl px-4 py-8">
|
||||
<div className="mb-6">
|
||||
<h1 className="text-2xl font-semibold">Portfolio</h1>
|
||||
<p className="text-sm text-muted-foreground">Browse artworks ordered by color.</p>
|
||||
</div>
|
||||
|
||||
<ColorMasonryGallery />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user