Skip to content

Commit 2b13b53

Browse files
committed
Tweak logo size, favicon, and join section placement
1 parent 56016a1 commit 2b13b53

4 files changed

Lines changed: 26 additions & 19 deletions

File tree

src/components/sections/HeaderCard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ export function HeaderCard({ theme, onToggleTheme }: HeaderCardProps) {
1515
<div className="flex flex-col items-center">
1616
<h1 className="text-2xl font-bold dark:text-white mb-4">Shakeri Lab</h1>
1717

18-
<div className="w-[100px] mb-4">
18+
<div className="w-[72px] mb-3">
1919
<Image
2020
src="/dynamo-lab-logo.png"
2121
alt="Shakeri Lab Logo"
22-
width={100}
23-
height={100}
22+
width={72}
23+
height={72}
2424
className="h-auto w-full"
2525
priority
2626
/>

src/components/sections/ProjectsCard.tsx

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,6 @@ const projects = [
3333
</>
3434
),
3535
},
36-
{
37-
title: "We're Looking For Builders Who Bridge Theory & Practice",
38-
description: (
39-
<>
40-
The Architect: adapts Transformers, Attention, and LLM ideas to time-series and knows why they work. The Theorist: brings dynamical systems, control, or operator theory to clinical data. The Modeler: uses generative AI or epidemiological modeling to simulate complex, interdependent processes that inform public health and patient care.
41-
</>
42-
),
43-
},
4436
];
4537

4638
export function ProjectsCard() {
@@ -50,12 +42,29 @@ export function ProjectsCard() {
5042
<CardTitle className="dark:text-white">Current Projects</CardTitle>
5143
</CardHeader>
5244
<CardContent className="space-y-8">
53-
{projects.map((project, index) => (
54-
<div key={index}>
55-
<h3 className="font-semibold mb-2 text-zinc-700 dark:text-zinc-300">{project.title}</h3>
56-
<p className="text-sm dark:text-gray-300">{project.description}</p>
45+
<div className="space-y-8">
46+
{projects.map((project, index) => (
47+
<div key={index}>
48+
<h3 className="font-semibold mb-2 text-zinc-700 dark:text-zinc-300">{project.title}</h3>
49+
<p className="text-sm dark:text-gray-300">{project.description}</p>
50+
</div>
51+
))}
52+
</div>
53+
54+
<div className="border-t border-gray-200 pt-6 dark:border-gray-700 space-y-4">
55+
<h3 className="font-semibold text-zinc-700 dark:text-zinc-200">Join Our Team</h3>
56+
<p className="text-sm dark:text-gray-300">
57+
We are recruiting PhD students and postdocs who are excited to bridge hard mathematics with applied clinical impact.
58+
</p>
59+
<div className="space-y-2 text-sm dark:text-gray-300">
60+
<p><strong>The Architect</strong>: adapts Transformers, Attention, and LLM ideas to time-series and understands why they work.</p>
61+
<p><strong>The Theorist</strong>: brings dynamical systems, control, or operator theory to clinical data.</p>
62+
<p><strong>The Modeler</strong>: uses generative AI or epidemiological modeling to simulate complex, interdependent processes that inform public health and patient care.</p>
5763
</div>
58-
))}
64+
<p className="text-sm dark:text-gray-300">
65+
If you want to pair rigorous theory with real-world deployment, we&apos;d love to hear from you.
66+
</p>
67+
</div>
5968
</CardContent>
6069
</Card>
6170
);

src/pages/_document.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default function Document() {
3838
<link rel="canonical" href="https://shakeri-lab.github.io/" />
3939

4040
{/* Favicon */}
41-
<link rel="icon" href="/favicon.ico" />
41+
<link rel="icon" type="image/png" href="/dynamo-lab-logo.png" />
4242
<link rel="apple-touch-icon" href="/dynamo-lab-logo.png" />
4343

4444
{/* Theme Color */}

src/pages/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {
44
HeaderCard,
55
TeamCard,
66
VideoCard,
7-
JoinCard,
87
ResearchCard,
98
ProjectsCard,
109
NewsCard,
@@ -54,7 +53,6 @@ export default function Home() {
5453
<HeaderCard theme={theme} onToggleTheme={toggleTheme} />
5554
<TeamCard />
5655
<VideoCard />
57-
<JoinCard />
5856
</div>
5957

6058
{/* Middle Column */}

0 commit comments

Comments
 (0)