nzambello.dev/src/pages/index.astro

18 lines
486 B
Plaintext
Raw Normal View History

2023-05-30 17:12:28 +02:00
---
2023-05-31 10:10:31 +02:00
import BaseLayout from '../layouts/BaseLayout.astro'
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'
import IconsTech from '../components/IconsTech.astro'
import ContactLinks from '../components/ContactLinks.astro'
2023-05-30 17:12:28 +02:00
---
2023-05-31 10:10:31 +02:00
<BaseLayout title={SITE_TITLE} description={SITE_DESCRIPTION}>
<hgroup>
<h1>🧑‍🚀 Hello, Astronaut!</h1>
<p>I'm a web frontend developer, working as freelance consultant</p>
</hgroup>
<IconsTech />
<ContactLinks />
2023-05-31 10:10:31 +02:00
</BaseLayout>