We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b9bf05 commit 82bcf56Copy full SHA for 82bcf56
2 files changed
src/components/BaseHead.astro
@@ -1,5 +1,5 @@
1
---
2
-const { title = "8gears", description = "Personal Website" } = Astro.props;
+const { title = "8gears", description = "8gears' Personal Website" } = Astro.props;
3
4
5
<head>
src/layouts/Layout.astro
@@ -7,7 +7,7 @@ const { title } = Astro.props;
7
8
<html lang="en">
9
10
- <BaseHead />
+ <BaseHead title={title}/>
11
</head>
12
<body class="bg-zinc-800 text-neutral-50">
13
<main class="flex justify-center items-center md:min-h-150" style="text-align: center;">
0 commit comments