From 4c585f562ccd2a7474367d21ba772140dfb3b03d Mon Sep 17 00:00:00 2001
From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com>
Date: Wed, 23 Aug 2023 07:48:52 +0100
Subject: Adds about us section
---
src/pages/[locale]/index.astro | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
(limited to 'src/pages')
diff --git a/src/pages/[locale]/index.astro b/src/pages/[locale]/index.astro
index 486d2e8..4c4c82a 100644
--- a/src/pages/[locale]/index.astro
+++ b/src/pages/[locale]/index.astro
@@ -7,6 +7,7 @@ import type Locale from '$types/Locale';
import { getMostRecentNewsItem } from '$lib/newsUtils';
import contactDetails from '$data/contactDetails';
import NewsIndex from '$components/NewsIndex/NewsIndex.astro';
+import committee from '$data/committee';
export async function getStaticPaths() {
return localeStaticPaths;
@@ -32,6 +33,33 @@ const mostRecentNewsItem = await getMostRecentNewsItem(locale);
}
+
+
+
+
+
+
+
+ {
+ committee.map((member) => (
+ -
+ {member.imgSrc && (
+
+ )}
+
+
+ ))
+ }
+
+
+