-
-
-
-
-
+
);
}
\ No newline at end of file
diff --git a/src/pages/gallery/index.tsx b/src/pages/gallery/index.tsx
new file mode 100644
index 0000000..01becda
--- /dev/null
+++ b/src/pages/gallery/index.tsx
@@ -0,0 +1,21 @@
+import type { Metadata } from 'next';
+import ImageGallery from '../../components/ImageGallery';
+
+export const metadata: Metadata = {
+ title: 'Pranshu05 // Gallary',
+ description: 'My Gallary, feel free to explore!',
+};
+
+const ImageGalleryPage: React.FC = () => {
+ return (
+
+ );
+};
+
+export default ImageGalleryPage;
\ No newline at end of file
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 2fafc1d..8bc2553 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -5,6 +5,7 @@ import type { Metadata } from "next";
import { ageInYears } from '@/lib/AgeInYears';
import { useEffect, useState } from 'react';
import { getFormattedTime } from '@/lib/Time';
+import HomeImageGrid from '@/components/HomeImageGrid';
const socialLinks = [
{ href: 'https://github.com/pranshu05', icon:
, text: 'GitHub' },
@@ -50,6 +51,7 @@ const Home: React.FC = () => {
))}
+