website/src/pages/index.astro
xHyroM 8e336b8bd7 feat: add prettier-astro and schema.org
add schema.org schema to main page, projects page, every blbog post for better SEO
2023-02-25 11:01:29 +01:00

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>