diff --git a/components/Gallery/gallery.js b/components/Gallery/gallery.js
new file mode 100644
index 00000000..2c7bafd4
--- /dev/null
+++ b/components/Gallery/gallery.js
@@ -0,0 +1,50 @@
+/* eslint-disable react/no-unescaped-entities */
+import React from 'react';
+import Heading from '../Typography/heading';
+import Button from '../Buttons/button';
+import Link from 'next/link';
+
+function Gallery() {
+ return (
+
+
+
+
+
+
+ Our Events Gallery
+
+
+
+ AACoT'24 Gallery
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+export default Gallery;
diff --git a/config/links.json b/config/links.json
index a8f38da1..3a2df9e9 100644
--- a/config/links.json
+++ b/config/links.json
@@ -34,12 +34,12 @@
"ref": "/#tickets"
},
{
- "title": "Sponsors",
- "ref": "/#sponsors"
+ "title": "Gallery",
+ "ref": "/#gallery"
},
{
- "title":"Past Editions",
- "ref":"/editions"
+ "title": "Sponsors",
+ "ref": "/#sponsors"
},
{
"title":"Resources Hub",
@@ -50,7 +50,11 @@
"title": "Helsinki Slides",
"ref": "https://drive.google.com/drive/folders/1nY7dZF8WFXZ3r2rCWJDDoT2C_GMfQJMV?usp=drive_link",
"target": "_blank"
- }
+ },
+ {
+ "title":"Past Editions",
+ "ref":"/editions"
+ }
]
}
diff --git a/pages/index.js b/pages/index.js
index fd024269..851c4c1a 100644
--- a/pages/index.js
+++ b/pages/index.js
@@ -16,6 +16,7 @@ import speakers from '../config/speakers.json';
import Link from 'next/link';
import Button from '../components/Buttons/button';
import Dropdown from '../components/Dropdown/dropdown';
+import Gallery from '../components/Gallery/gallery';
export default function Home() {
const isTablet = useMediaQuery({ maxWidth: '1118px' });
@@ -184,6 +185,9 @@ export default function Home() {
}
})}
+
+
+