Skip to content

Commit 549f9f7

Browse files
authored
Fix site name in nav bar (#15)
1 parent f943498 commit 549f9f7

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/components/Header.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
import { SITE_TITLE } from "../consts";
2+
import { SITE_NAME } from "../consts";
33
import HeaderLink from "./HeaderLink.astro";
44
---
55

66
<header>
77
<nav>
8-
<h2><a href="/">{SITE_TITLE}</a></h2>
8+
<h2><a href="/">{SITE_NAME}</a></h2>
99
<div class="internal-links">
1010
<HeaderLink href="/">Home</HeaderLink>
1111
<HeaderLink href="/blog">Blog</HeaderLink>

src/consts.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Place any global data in this file.
22
// You can import this data from anywhere in your site by using the `import` keyword.
33

4+
export const SITE_NAME = 'HotFix.Day';
45
export const SITE_TITLE = 'HotFix.Day · Fixes, Failures & the Future of DevOps';
56
export const SITE_DESCRIPTION = 'Things break in production; we write about why. Incident analysis, infrastructure automation, CI/CD, observability, and open-source SRE tooling.';

0 commit comments

Comments
 (0)