From dcecccebabc7ac2d659f163a400ad372e2c561e8 Mon Sep 17 00:00:00 2001 From: spaaaacccee Date: Tue, 28 May 2024 17:25:32 +1000 Subject: [PATCH] Update team list --- src/components/Footer.tsx | 4 ++-- src/components/grid.tsx | 7 +++++++ src/l10n/en-au.json | 22 ++++++++++++++++------ src/pages/index.tsx | 22 ++++++++++++++++++---- static/google876eb7d50d22513f.html | 1 + 5 files changed, 44 insertions(+), 12 deletions(-) create mode 100644 static/google876eb7d50d22513f.html diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index d059650..9f8eda9 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -11,7 +11,7 @@ export function Footer() { const paper = usePaper(); return ( <> - + - + {l10n.footerLinks.map(({ title, links }) => ( diff --git a/src/components/grid.tsx b/src/components/grid.tsx index 8c3669b..ac8dd81 100644 --- a/src/components/grid.tsx +++ b/src/components/grid.tsx @@ -3,3 +3,10 @@ export const grid = (size: number) => ({ gridAutoFlow: "row", gridTemplateColumns: `repeat(auto-fill, minmax(min(100%, ${size}px), 1fr))`, }); +export const flex = (size: number) => ({ + display: "flex", + flexDirection: "row", + flexWrap: "wrap", + justifyContent: "center", + "> *": { width: size }, +}); diff --git a/src/l10n/en-au.json b/src/l10n/en-au.json index f92d5b7..e1783d6 100644 --- a/src/l10n/en-au.json +++ b/src/l10n/en-au.json @@ -182,7 +182,7 @@ "name": "Daniel Harabor", "title": "Dept. of Data Science & AI", "avatar": "https://research.monash.edu/files-asset/19414730/Screen_Shot_2016_12_13_at_9.08.09_AM.png?w=160&f=webp", - "github": "https://research.monash.edu/en/persons/daniel-harabor" + "github": "https://harabor.net/daniel" }, { "name": "Michael Wybrow", @@ -191,21 +191,31 @@ "github": "https://research.monash.edu/en/persons/michael-wybrow" } ], - "teamContributorTitle": "With unwavering support and generous contributions from", + "teamContributorTitle": "Posthoc was a multi-year project made possible by the hard work and dedication from many student contributors. We're grateful to the following individuals whose efforts contributed to early prototypes of the system:", + "teamSupporterTitle": "We also thank the following people for their many helpful suggestions, feedback, and support:", "contributors": [ + "Can Wang", "Francis Anthony", - "Karan Batta", "Jay Wingate", + "Karan Batta", "Leo Whitehead", - "Can Wang", - "Rory Tobin-Underwood", + "Rory Tobin-Underwood" + ], + "supporters": [ "Mike Chen", "Yue Zhang", "Thomas Nobes", "Ryan Hechenberger", "Mark Carlson", "Andy Li", - "(incomplete list)" + "Jayden Filipi", + "Bojie Shen", + "Shizhe Zhao", + "Jason Nyugen", + "Jonathan Morag", + "Cole Peeters", + "Julian Lee", + "Tim Wang" ], "footerCopyright": "Copyright © 2024 Monash University" } diff --git a/src/pages/index.tsx b/src/pages/index.tsx index ba61420..ce2ffbf 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -21,7 +21,7 @@ import { GetStartedButton } from "../components/GetStartedButton"; import { Hero } from "../components/Hero"; import { useMode } from "../components/ModeContext"; import { SectionTitle } from "../components/SectionTitle"; -import { grid } from "../components/grid"; +import { flex, grid } from "../components/grid"; import { useSm } from "../components/useSm"; import { useTitleBar } from "../components/useTitleBar"; import { l10n } from "../l10n"; @@ -134,18 +134,32 @@ function Content() { {l10n.teamContributorTitle} - + {map(l10n.contributors, (s) => ( {s} ))} + + {l10n.teamSupporterTitle} + + + {map(l10n.supporters, (s) => ( + + {s} + + ))} +