diff options
Diffstat (limited to 'src/pages/Home.tsx')
| -rw-r--r-- | src/pages/Home.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pages/Home.tsx b/src/pages/Home.tsx index 2048122..9b73c05 100644 --- a/src/pages/Home.tsx +++ b/src/pages/Home.tsx @@ -1,6 +1,6 @@ -import ImageGalleryGrid from "../components/ImageGalleryGrid"; +import Gallery from "../components/Gallery"; -export default function HomePage() { +export default function Home() { return ( <> <title>߸ hi</title> @@ -10,7 +10,7 @@ export default function HomePage() { I have a passion for hardware and software, studying computer science. Currently building own 3d printing projects and learning nix. </p> - <ImageGalleryGrid + <Gallery images={[ { src: "/images/3ds.webp", alt: "Nintendo 3DS", id: 1 }, { src: "/images/esp32.webp", alt: "ESP 32", id: 2 }, @@ -33,4 +33,4 @@ export default function HomePage() { </ul> </> ); -}
\ No newline at end of file +} |
