Skip to content

Commit

Permalink
Update team list
Browse files Browse the repository at this point in the history
  • Loading branch information
spaaaacccee committed May 28, 2024
1 parent 3a9173c commit dceccce
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 12 deletions.
4 changes: 2 additions & 2 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function Footer() {
const paper = usePaper();
return (
<>
<Box p={3} sx={paper(1)}>
<Box p={3} sx={{ ...paper(1), borderRadius: 0 }}>
<Stack
gap={4}
sx={{
Expand All @@ -23,7 +23,7 @@ export function Footer() {
}}
>
<Stack direction="row" gap={8}>
<Logo width={32} height={32} />
<Logo width={32} height={32} style={{ filter: "saturate(0%)" }} />
<Stack sx={grid(180)} gap={8} flex={1}>
{l10n.footerLinks.map(({ title, links }) => (
<Stack gap={1} sx={{ flex: 1 }}>
Expand Down
7 changes: 7 additions & 0 deletions src/components/grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
});
22 changes: 16 additions & 6 deletions src/l10n/en-au.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"
}
22 changes: 18 additions & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -134,18 +134,32 @@ function Content() {
</Stack>
<Typography
variant="subtitle2"
color="text.primary"
sx={{ py: 8 }}
color="text.secondary"
sx={{ py: 8, maxWidth: 720, mx: "auto" }}
>
{l10n.teamContributorTitle}
</Typography>
<Stack gap={4} sx={grid(200)}>
<Stack gap={4} sx={flex(150)}>
{map(l10n.contributors, (s) => (
<Typography color="text.primary" variant="subtitle2">
{s}
</Typography>
))}
</Stack>
<Typography
variant="subtitle2"
color="text.secondary"
sx={{ py: 8, maxWidth: 720, mx: "auto" }}
>
{l10n.teamSupporterTitle}
</Typography>
<Stack gap={4} sx={flex(150)}>
{map(l10n.supporters, (s) => (
<Typography color="text.primary" variant="subtitle2">
{s}
</Typography>
))}
</Stack>
</Box>
</Box>
<Footer />
Expand Down
1 change: 1 addition & 0 deletions static/google876eb7d50d22513f.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
google-site-verification: google876eb7d50d22513f.html

0 comments on commit dceccce

Please sign in to comment.