Skip to content

Commit e515d22

Browse files
etzmclaude
andcommitted
Add BIO-CODES logo to navbar/footer and SVG favicon
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 788dbe2 commit e515d22

6 files changed

Lines changed: 87 additions & 4 deletions

File tree

_includes/footer.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="container">
33
<div class="footer-main">
44
<div class="footer-left">
5-
<a href="{{ '/' | relative_url }}#hero" class="footer-logo">{{ site.title }}</a>
5+
<a href="{{ '/' | relative_url }}#hero" class="footer-logo">{% include logo.svg %}{{ site.title }}</a>
66
<p class="footer-tagline">{{ site.tagline }}</p>
77
<div class="footer-nav">
88
<a href="#challenge" class="footer-link">Why</a>

_includes/head.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<meta name="description" content="{{ page.description | default: site.description }}">
44
<title>{% if page.title %}{{ page.title }} | {{ site.title }}{% else %}{{ site.title }} — {{ site.tagline }}{% endif %}</title>
55
{% seo %}
6-
<link rel="icon" type="image/x-icon" href="{{ '/favicon.ico' | relative_url }}">
6+
<link rel="icon" type="image/svg+xml" href="{{ '/favicon.svg' | relative_url }}">
77
<link rel="preconnect" href="https://fonts.googleapis.com">
88
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
99
<link href="https://fonts.googleapis.com/css2?family=Readex+Pro:wght@300;400;500;600;700&family=DM+Mono:wght@400&display=swap" rel="stylesheet">

_includes/logo.svg

Lines changed: 40 additions & 0 deletions
Loading

_includes/navbar.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<header class="navbar" id="navbar">
22
<div class="container nav-container">
3-
<a href="{{ '/' | relative_url }}#hero" class="nav-logo">{{ site.title }}</a>
3+
<a href="{{ '/' | relative_url }}#hero" class="nav-logo">{% include logo.svg %}{{ site.title }}</a>
44
<button class="nav-toggle" id="navToggle" aria-label="Toggle navigation">
55
<span></span>
66
<span></span>

assets/css/style.css

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,15 @@ ul {
9292
font-weight: 700;
9393
color: var(--color-accent);
9494
letter-spacing: 0.04em;
95+
display: flex;
96+
align-items: center;
97+
gap: 8px;
98+
}
99+
100+
.nav-logo svg {
101+
width: 32px;
102+
height: 29px;
103+
flex-shrink: 0;
95104
}
96105

97106
.nav-logo:hover {
@@ -769,11 +778,19 @@ ul {
769778
font-size: 1.3rem;
770779
font-weight: 700;
771780
color: #ffffff;
772-
display: block;
781+
display: flex;
782+
align-items: center;
783+
gap: 8px;
773784
margin-bottom: 6px;
774785
letter-spacing: 0.04em;
775786
}
776787

788+
.footer-logo svg {
789+
width: 32px;
790+
height: 29px;
791+
flex-shrink: 0;
792+
}
793+
777794
.footer-logo:hover {
778795
color: #c98adb;
779796
}

favicon.svg

Lines changed: 26 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)