mirror of
https://github.com/xHyroM/website.git
synced 2024-11-25 00:01:06 +01:00
8e336b8bd7
add schema.org schema to main page, projects page, every blbog post for better SEO
24 lines
552 B
Text
24 lines
552 B
Text
---
|
|
import Layout from "../layouts/Layout.astro";
|
|
import Hero from "../components/widgets/index/Hero.astro";
|
|
import Navbar from "../components/widgets/Navbar.astro";
|
|
---
|
|
|
|
<Layout
|
|
schemaOrg={{
|
|
"@context": "https://schema.org/",
|
|
"@type": "Person",
|
|
name: "xHyroM",
|
|
url: "https://xhyrom.me",
|
|
image: "https://xhyrom.me/favicon.ico",
|
|
sameAs: [
|
|
"https://twitter.com/hyrousek",
|
|
"https://instagram.com/hyro.dev",
|
|
"https://github.com/xHyroM",
|
|
],
|
|
jobTitle: "Developer",
|
|
}}
|
|
>
|
|
<Navbar />
|
|
<Hero />
|
|
</Layout>
|