|
| 1 | +--- |
| 2 | +import PageLayout from "@/layouts/BaseLayout.astro"; |
| 3 | +import PublicationList from "@/components/PublicationList.astro"; |
| 4 | +import Section from "@/components/Section.astro"; |
| 5 | +import Card from "@/components/Card.astro"; |
| 6 | +
|
| 7 | +import { sortPublicationFn } from "@/utils"; |
| 8 | +
|
| 9 | +import type { Publication } from "@/utils"; |
| 10 | +
|
| 11 | +import selectedPubs from "@/assets/publications.json"; |
| 12 | +
|
| 13 | +const sortedSelectedPubs = selectedPubs |
| 14 | + .filter((pub: Publication) => pub.marked) |
| 15 | + .sort(sortPublicationFn); |
| 16 | +--- |
| 17 | + |
| 18 | +<PageLayout meta={{ title: "Group Members" }}> |
| 19 | + <div class='w-full max-w-[50rem]'> |
| 20 | + <h1 class='mb-6 mt-5 text-2xl font-bold'>Students</h1> |
| 21 | + |
| 22 | + <br /> |
| 23 | + <br /> |
| 24 | + |
| 25 | + <Section title="Master's"> |
| 26 | + <Card |
| 27 | + heading='Paul Moore' |
| 28 | + subheading='MSc. thesis, co-supervised by Lucian Ilie' |
| 29 | + date='2025 – 2027' |
| 30 | + imagePath='/src/assets/who.jpeg' |
| 31 | + imageClass='rounded-full' |
| 32 | + altText='Paul Moore' |
| 33 | + > |
| 34 | + Uncertainty-aware algorithms for bioinformatics. |
| 35 | + </Card> |
| 36 | + </Section> |
| 37 | + |
| 38 | + <Section title='Undergraduate' class='pt-12'> |
| 39 | + <Card |
| 40 | + heading='Molick Hou' |
| 41 | + subheading='BSc. Thesis' |
| 42 | + date='2025 – 2026' |
| 43 | + imagePath='/src/assets/who.jpeg' |
| 44 | + imageClass='rounded-full' |
| 45 | + altText='Molick Hou' |
| 46 | + > |
| 47 | + Decision-making algorithms under LLM uncertainty. |
| 48 | + </Card> |
| 49 | + <Card |
| 50 | + heading='Jacob Colton' |
| 51 | + subheading='BSc. Thesis' |
| 52 | + date='2025 – 2026' |
| 53 | + imagePath='/src/assets/who.jpeg' |
| 54 | + imageClass='rounded-full' |
| 55 | + altText='Jacob Colton' |
| 56 | + > |
| 57 | + Multi-fidelity decision-making algorithms. |
| 58 | + </Card> |
| 59 | + </Section> |
| 60 | + </div> |
| 61 | +</PageLayout> |
0 commit comments