2022-12-04 14:46:22 +01:00
|
|
|
---
|
2022-12-04 15:30:42 +01:00
|
|
|
import Layout from "../layouts/Layout.astro";
|
2023-01-03 13:21:24 +01:00
|
|
|
import Hero from "../components/widgets/index/Hero.astro";
|
2022-12-06 12:49:18 +01:00
|
|
|
import Navbar from "../components/widgets/Navbar.astro";
|
2022-12-04 14:46:22 +01:00
|
|
|
---
|
|
|
|
|
2023-02-25 11:01:29 +01:00
|
|
|
<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 />
|
2022-12-04 14:46:22 +01:00
|
|
|
</Layout>
|