From 67eb5e0b1ca4b0a634f9505449f68f4cd4e98efc Mon Sep 17 00:00:00 2001 From: bmcculley Date: Fri, 30 May 2025 21:54:53 -0400 Subject: [PATCH] Based on a slack chat from datphotogurl. Added JavaScript to adjust the height of the Board member cards on\nthe /team page. --- pages/team.tsx | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/pages/team.tsx b/pages/team.tsx index 952fa26af..bb3fb8ccc 100644 --- a/pages/team.tsx +++ b/pages/team.tsx @@ -4,6 +4,7 @@ import { s3 } from 'common/constants/urls'; import Content from 'components/Content/Content'; import FlatCard from 'components/Cards/FlatCard/FlatCard'; import styles from 'styles/team.module.css'; +import Script from "next/script"; const boardMembers = [ { @@ -65,6 +66,51 @@ const boardMembers = [ export default function Team() { return ( + <> +
@@ -121,5 +167,6 @@ export default function Team() { ]} />
+ ); }