diff options
-rw-r--r-- | .env | 2 | ||||
-rw-r--r-- | src/components/Header.astro | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,2 +1,2 @@ -DEFAULT_TITLE=Valentin Popov’s Technology Blog +DEFAULT_TITLE=Valentin Popov’s Blog DEFAULT_DESCRIPTION=Tech insights and coding best practices from an OpenSource enthusiast and ethical hacker.
\ No newline at end of file diff --git a/src/components/Header.astro b/src/components/Header.astro index 2fdf620..a42ff2a 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -50,7 +50,7 @@ const { pathname } = Astro.url; pathname !== "/" ? ( <> <Icon name="hugeicons:arrow-left-01" /> - <span>{import.meta.env.DEFAULT_TITLE}</span> + <span>Home</span> </> ) : ( <> |