|
| 1 | +import { Trophy } from "lucide-react" |
| 2 | + |
| 3 | +import { Badge } from "@/components/ui/badge" |
| 4 | +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" |
| 5 | + |
| 6 | +export const metadata = { |
| 7 | + title: "Awards | Mathis Group", |
| 8 | + description: "Recognition and awards received by the Mathis Group.", |
| 9 | +} |
| 10 | + |
| 11 | +export default function AwardsPage() { |
| 12 | + const awards = [ |
| 13 | + { |
| 14 | + date: "October 2024", |
| 15 | + title: "Robert Bing Prize", |
| 16 | + organization: "Swiss Academy of Medical Sciences (SAMS)", |
| 17 | + recipients: "Mackenzie and Alexander Mathis", |
| 18 | + description: "Honored for groundbreaking contributions to the intersection of neuroscience and machine learning", |
| 19 | + type: "Prize" |
| 20 | + }, |
| 21 | + { |
| 22 | + date: "September 2024", |
| 23 | + title: "HackaHealth Award", |
| 24 | + organization: "HackaHealth", |
| 25 | + recipients: "Merkourios Simos", |
| 26 | + description: "Received for his Master's thesis in the lab on imitation learning", |
| 27 | + type: "Award" |
| 28 | + }, |
| 29 | + { |
| 30 | + date: "July 2023", |
| 31 | + title: "Eric Kandel Young Neuroscientists Prize 2023", |
| 32 | + organization: "Eric Kandel Foundation", |
| 33 | + recipients: "Mackenzie W. Mathis and Alexander Mathis", |
| 34 | + description: "For uncovering the theoretical and neural basis of mechanisms underlying adaptive behaviour in intelligent systems. They developed the first animal pose estimation computer vision tool that requires little user input data.", |
| 35 | + type: "Prize" |
| 36 | + }, |
| 37 | + { |
| 38 | + date: "December 2023", |
| 39 | + title: "MyoChallenge Track Winner at NeurIPS 2023", |
| 40 | + organization: "NeurIPS", |
| 41 | + recipients: "Team Lattice (Alessandro Marin Vargas, Alberto Chiappa, Alexander Mathis)", |
| 42 | + description: "Through the application of curriculum learning, reward shaping, and Lattice-driven exploration, they successfully trained a policy to control a biologically-realistic arm equipped with 63 muscles and 27 degrees of freedom.", |
| 43 | + type: "Competition" |
| 44 | + }, |
| 45 | + { |
| 46 | + date: "December 2022", |
| 47 | + title: "Inaugural MyoChallenge Winner at NeurIPS 2022", |
| 48 | + organization: "NeurIPS", |
| 49 | + recipients: "Alberto Chiappa, Nisheet Patel, Pablo Tano, Alexandre Pouget, Alexander Mathis", |
| 50 | + description: "Winning solution for the inaugural NeurIPS MyoChallenge. See the Neuron paper discussing the solution and implications for biological motor control.", |
| 51 | + type: "Competition" |
| 52 | + } |
| 53 | + ] |
| 54 | + |
| 55 | + return ( |
| 56 | + <div className="flex flex-col"> |
| 57 | + {/* Header */} |
| 58 | + <section className="bg-muted/30 py-24"> |
| 59 | + <div className="section-container"> |
| 60 | + <div className="mx-auto max-w-2xl text-center"> |
| 61 | + <Trophy className="mx-auto mb-6 size-12 text-primary" /> |
| 62 | + <h1 className="text-4xl font-bold tracking-tight sm:text-5xl"> |
| 63 | + Awards & Recognition |
| 64 | + </h1> |
| 65 | + <p className="mt-6 text-lg leading-8 text-muted-foreground"> |
| 66 | + Recognition for our contributions to neuroscience and machine learning |
| 67 | + </p> |
| 68 | + </div> |
| 69 | + </div> |
| 70 | + </section> |
| 71 | + |
| 72 | + {/* Awards List */} |
| 73 | + <section className="py-16 lg:py-24"> |
| 74 | + <div className="section-container max-w-4xl"> |
| 75 | + <div className="space-y-8"> |
| 76 | + {awards.map((award, index) => ( |
| 77 | + <Card key={index} className="transition-all hover:shadow-soft-lg"> |
| 78 | + <CardHeader> |
| 79 | + <div className="flex items-start justify-between gap-4"> |
| 80 | + <div className="flex-1"> |
| 81 | + <div className="mb-2 flex items-center gap-3"> |
| 82 | + <Badge variant="outline">{award.date}</Badge> |
| 83 | + <Badge variant="secondary">{award.type}</Badge> |
| 84 | + </div> |
| 85 | + <CardTitle className="text-2xl">{award.title}</CardTitle> |
| 86 | + <CardDescription className="mt-1 text-base"> |
| 87 | + {award.organization} |
| 88 | + </CardDescription> |
| 89 | + </div> |
| 90 | + </div> |
| 91 | + </CardHeader> |
| 92 | + <CardContent> |
| 93 | + <div className="space-y-3"> |
| 94 | + <div> |
| 95 | + <p className="mb-1 text-sm font-medium text-muted-foreground">Recipients:</p> |
| 96 | + <p className="text-sm">{award.recipients}</p> |
| 97 | + </div> |
| 98 | + <div> |
| 99 | + <p className="text-sm leading-relaxed text-muted-foreground"> |
| 100 | + {award.description} |
| 101 | + </p> |
| 102 | + </div> |
| 103 | + </div> |
| 104 | + </CardContent> |
| 105 | + </Card> |
| 106 | + ))} |
| 107 | + </div> |
| 108 | + </div> |
| 109 | + </section> |
| 110 | + </div> |
| 111 | + ) |
| 112 | +} |
0 commit comments