website/src/pages/index.astro

25 lines
552 B
Text
Raw Normal View History

2022-12-04 14:46:22 +01:00
---
2022-12-04 15:30:42 +01:00
import Layout from "../layouts/Layout.astro";
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
---
<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>