Skip to content

Commit

Permalink
feat: gallery page
Browse files Browse the repository at this point in the history
  • Loading branch information
BitMap4 committed Oct 27, 2024
1 parent 18a2180 commit 55284b9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/app/gallery/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Section } from "@/components/Section";
import { ImageGallery } from "@/components/ImageGallery";

export default function Home() {
return (
<div className="max-w-[874px] mx-auto">
<Section title="Gallery">
<ImageGallery src="/images/gallery" width="100%" />
</Section>
</div>
);
}

0 comments on commit 55284b9

Please sign in to comment.