Skip to content

Commit 6eb73ca

Browse files
committed
update
1 parent db4a55e commit 6eb73ca

File tree

5 files changed

+29
-17
lines changed

5 files changed

+29
-17
lines changed

public/rao.jpg

132 KB
Loading

src/components/Hero.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ export default function Hero() {
44
<div className="absolute inset-0 bg-molecules bg-cover bg-center opacity-10 animate-float"></div>
55
<h1 className="text-5xl md:text-6xl font-serif font-bold z-10">CURE-Bench @ NeurIPS 2025</h1>
66
<p className="mt-6 max-w-3xl text-lg md:text-xl font-sans z-10">
7-
Benchmarking AI reasoning for therapeutic decision-making at scale.
7+
Benchmarking AI reasoning for therapeutic decision-making at scale
88
</p>
99
<div className="z-10 mt-6 flex gap-4">
1010
<a href="https://github.com/mims-harvard/CURE-Bench" target="_blank" rel="noreferrer">
11-
<button className="px-4 py-2 rounded-xl bg-white text-blue-950 font-medium shadow hover:shadow-md transition">View Start Kit</button>
11+
<button className="px-4 py-2 rounded-xl bg-white text-blue-950 font-medium shadow hover:shadow-md transition">View Starter Kit</button>
1212
</a>
1313
<a href="https://www.kaggle.com/competitions/cure-bench" target="_blank" rel="noreferrer">
1414
<button className="px-4 py-2 rounded-xl border border-white text-white font-medium hover:bg-white hover:text-blue-950 transition">Join on Kaggle</button>

src/components/Logos.jsx

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ export default function Logos() {
66
{ src: "kempner.png", alt: "Kempner Institute" },
77
{ src: "mit.png", alt: "Massachusetts Institute of Technology" },
88
{ src: "BW-logo.png", alt: "Brigham and Women's Hospital" },
9-
// { src: "lincoln.png", alt: "MIT Lincoln Laboratory" },
109
{ src: "czi.png", alt: "Chan Zuckerberg Initiative" },
1110
{ src: "milken.png", alt: "Milken Institute" },
12-
{ src: "biswise.png", alt: "Biswas Family Foundation" }
11+
{ src: "biswise.png", alt: "Biswas Family Foundation" },
12+
{ src: "rao.jpg", alt: "Chan Zuckerberg Initiative" },
13+
{ src: "lincoln.png", alt: "MIT Lincoln Laboratory" },
1314
];
1415

1516
return (
@@ -18,17 +19,21 @@ export default function Logos() {
1819
Responsive CSS Grid makes it easy to keep items aligned without
1920
manually defining rows. auto-fit+minmax ensures a nice flow on any screen.
2021
*/}
21-
<div className="container mx-auto grid gap-10 place-items-center
22-
grid-cols-2 sm:grid-cols-4 lg:grid-cols-4 xl:grid-cols-4">
23-
{logos.map(({ src, alt }) => (
24-
<img
25-
key={alt}
26-
src={src}
27-
alt={alt}
28-
className="h-16 md:h-20 w-auto object-contain transition-transform
29-
duration-200 ease-in-out hover:scale-105"
30-
/>
31-
))}
22+
<div className="container mx-auto px-4">
23+
<div className="grid gap-8 place-items-center justify-items-center
24+
grid-cols-2 sm:grid-cols-3 md:grid-cols-4 lg:grid-cols-5 xl:grid-cols-5
25+
max-w-6xl mx-auto">
26+
{logos.map(({ src, alt }) => (
27+
<div key={alt} className="flex items-center justify-center w-full h-20">
28+
<img
29+
src={src}
30+
alt={alt}
31+
className="h-16 md:h-18 w-auto object-contain transition-transform
32+
duration-200 ease-in-out hover:scale-105 max-w-full"
33+
/>
34+
</div>
35+
))}
36+
</div>
3237
</div>
3338
</section>
3439
);

src/pages/FAQ.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function FAQ() {
1414

1515
<div>
1616
<h2 className="font-semibold text-crimson">How do I get started?</h2>
17-
<p>Download the starter kit from our GitHub repository. It includes baseline models, evaluation scripts, and example JSONL submissions. You may submit your outputs via Kaggle.</p>
17+
<p>Download the starter kit from our <a href="https://github.com/mims-harvard/CURE-Bench" className="text-blue-600 underline">GitHub repository</a>. It includes baseline models, evaluation scripts, and example JSONL submissions. You can submit your model predictions via <a href="https://www.kaggle.com/competitions/cure-bench" className="text-blue-600 underline">Kaggle</a>.</p>
1818
</div>
1919

2020
<div>

src/pages/Home.jsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,14 @@ export default function Home() {
484484
<Section title="Competition Timeline" dark>
485485
<p className="text-md text-gray-700 mb-10 max-w-4xl">
486486
Below are the key milestones and dates for CURE-Bench. We recommend
487-
subscribing to our GitHub repository for starter kit and submission
487+
subscribing to our <a
488+
href="https://github.com/mims-harvard/CURE-Bench"
489+
target="_blank"
490+
rel="noopener noreferrer"
491+
className="text-crimson-600 underline hover:text-crimson-800 transition"
492+
>
493+
GitHub repository
494+
</a> for starter kit and submission
488495
updates.
489496
</p>
490497

0 commit comments

Comments
 (0)