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'
|
2023-06-01 17:01:11 +02:00
|
|
|
import IconsTech from '../components/IconsTech.astro'
|
|
|
|
|
import ContactLinks from '../components/ContactLinks.astro'
|
2023-06-01 17:18:57 +02:00
|
|
|
import Greeting from '../components/Greeting.astro'
|
2023-05-30 17:12:28 +02:00
|
|
|
---
|
|
|
|
|
|
2023-05-31 10:10:31 +02:00
|
|
|
<BaseLayout title={SITE_TITLE} description={SITE_DESCRIPTION}>
|
2023-06-01 17:01:11 +02:00
|
|
|
<hgroup>
|
2023-06-01 17:18:57 +02:00
|
|
|
<Greeting />
|
2023-06-01 17:01:11 +02:00
|
|
|
<p>I'm a web frontend developer, working as freelance consultant</p>
|
|
|
|
|
</hgroup>
|
|
|
|
|
|
|
|
|
|
<IconsTech />
|
|
|
|
|
|
|
|
|
|
<ContactLinks />
|
2023-05-31 10:10:31 +02:00
|
|
|
</BaseLayout>
|