Skip to content

Commit e356e25

Browse files
committed
small visual
1 parent a4d7824 commit e356e25

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed

public/images/lab/favicon.png

2.75 KB
Loading
-2.08 MB
Binary file not shown.

public/images/lab/spiral-logo.jpg

-1.43 MB
Binary file not shown.

public/images/lab/spiral-logo.png

24.5 KB
Loading

src/components/Nav.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const currentPath = Astro.url.pathname;
1818
<!-- Brand -->
1919
<a href="/" class="flex items-center gap-3 group no-underline">
2020
<img
21-
src="/images/lab/spiral-logo.jpg"
21+
src="/images/lab/spiral-logo.png"
2222
alt="Lab logo"
2323
class="w-9 h-9 rounded-full object-cover border-2 border-stone-200 group-hover:border-blue-600 transition-colors"
2424
/>

src/layouts/Article.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const formatted = date.toLocaleDateString('en-GB', { day: 'numeric', month: 'lon
3737
<h1 class="font-serif text-3xl md:text-4xl text-stone-900 font-normal leading-snug mb-4">{title}</h1>
3838
{description && <p class="text-stone-500 text-lg leading-relaxed">{description}</p>}
3939
<div class="mt-5 pt-5 border-t border-stone-100 flex items-center gap-3">
40-
<img src="/images/lab/spiral-logo.jpg" alt={author} class="w-8 h-8 rounded-full object-cover border border-stone-200" />
40+
<img src="/images/lab/spiral-logo.png" alt={author} class="w-8 h-8 rounded-full object-cover border border-stone-200" />
4141
<span class="text-sm text-stone-500">{author} · {formatted}</span>
4242
</div>
4343
</header>

src/layouts/Base.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const canonicalURL = new URL(Astro.url.pathname, Astro.site);
1111
const siteURL = Astro.site?.toString() ?? 'https://compstatgenlab.github.io/';
1212
const ogImage = image
1313
? new URL(image, siteURL).toString()
14-
: new URL('/images/lab/spiral-logo.jpg', siteURL).toString();
14+
: new URL('/images/lab/spiral-logo.png', siteURL).toString();
1515
---
1616
<!doctype html>
1717
<html lang="en" class="scroll-smooth">
@@ -35,7 +35,7 @@ const ogImage = image
3535
<link rel="preconnect" href="https://fonts.googleapis.com" />
3636
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
3737
<link href="https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;1,6..72,300;1,6..72,400&family=Instrument+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Martian+Mono:wght@300;400;500&display=swap" rel="stylesheet" />
38-
<link rel="icon" type="image/jpeg" href="/images/lab/spiral-logo.jpg" />
38+
<link rel="icon" type="image/jpeg" href="/images/lab/spiral-logo.png" />
3939
<script data-goatcounter="https://compstatgenlab.goatcounter.com/count"
4040
async src="//gc.zgo.at/count.js"></script>
4141
<slot name="head" />

src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const articles = (await getCollection('articles'))
1616
"name": "Computational and Statistical Genomics Lab (CompStatGen Lab)",
1717
"alternateName": "Rubinacci Lab",
1818
"url": "https://compstatgenlab.github.io/",
19-
"logo": "https://compstatgenlab.github.io/images/lab/spiral-logo.jpg",
19+
"logo": "https://compstatgenlab.github.io/images/lab/spiral-logo.png",
2020
"description": "We develop efficient statistical and computational methods to decode human genetic variation at scale, applying them to biobanks to understand the genetic basis of disease.",
2121
"parentOrganization": {
2222
"@type": "Organization",
@@ -80,7 +80,7 @@ const articles = (await getCollection('articles'))
8080
style="max-height: 480px;"
8181
/>
8282
<div class="absolute -bottom-4 -right-8 w-16 h-16 rounded-full overflow-hidden border-4 border-white shadow-lg">
83-
<img src="/images/lab/spiral-logo.jpg" alt="Lab logo" class="w-full h-full object-cover" />
83+
<img src="/images/lab/spiral-logo.png" alt="Lab logo" class="w-full h-full object-cover" />
8484
</div>
8585
<p class="font-mono text-[0.62rem] text-stone-400 mt-4 text-center tracking-wider uppercase">
8686
The team at our lab retreat · Kirkkonummi, Finland · 2026

0 commit comments

Comments
 (0)