mirror of
https://github.com/xHyroM/website.git
synced 2024-11-21 22:41:06 +01:00
feat: add unique title for each page
start improving SEO
This commit is contained in:
parent
5de86adfe2
commit
e1c350b0e6
4 changed files with 12 additions and 1 deletions
|
@ -7,6 +7,7 @@ import { SKILLS } from "~/config";
|
|||
---
|
||||
|
||||
<Layout
|
||||
title="xHyroM - About Me"
|
||||
schemaOrg={{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "Person",
|
||||
|
@ -17,6 +18,10 @@ import { SKILLS } from "~/config";
|
|||
"https://twitter.com/hyrousek",
|
||||
"https://instagram.com/hyro.dev",
|
||||
"https://github.com/xHyroM",
|
||||
"https://ko-fi.com/xhyrom",
|
||||
"https://www.chess.com/member/Hyriik",
|
||||
"https://reddit.com/u/xHyroM",
|
||||
"https://wakatime.com/@xhyrom",
|
||||
],
|
||||
jobTitle: "Developer",
|
||||
}}
|
||||
|
|
|
@ -39,7 +39,7 @@ const posts = page.data as {
|
|||
}[];
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<Layout title="xHyroM - Blog">
|
||||
<Navbar />
|
||||
<h1 class="w-full py-32 text-center text-5xl font-extrabold text-white">
|
||||
Blog
|
||||
|
|
|
@ -7,6 +7,7 @@ import { SOCIALS } from "../config";
|
|||
---
|
||||
|
||||
<Layout
|
||||
title="xHyroM - Homepage"
|
||||
schemaOrg={{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "Person",
|
||||
|
@ -17,6 +18,10 @@ import { SOCIALS } from "../config";
|
|||
"https://twitter.com/hyrousek",
|
||||
"https://instagram.com/hyro.dev",
|
||||
"https://github.com/xHyroM",
|
||||
"https://ko-fi.com/xhyrom",
|
||||
"https://www.chess.com/member/Hyriik",
|
||||
"https://reddit.com/u/xHyroM",
|
||||
"https://wakatime.com/@xhyrom",
|
||||
],
|
||||
jobTitle: "Developer",
|
||||
}}
|
||||
|
|
|
@ -39,6 +39,7 @@ PROJECTS.sort((a, b) => a.name.localeCompare(b.name));
|
|||
---
|
||||
|
||||
<Layout
|
||||
title="xHyroM - My projects"
|
||||
schemaOrg={{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "ItemList",
|
||||
|
|
Loading…
Reference in a new issue