71 lines
1.8 KiB
Text
71 lines
1.8 KiB
Text
---
|
|
import Layout from '../../../../layouts/Layout.astro'
|
|
import Footer from '../../../../components/Footer.astro'
|
|
const title = 'Settling in The Netherlands'
|
|
const description =
|
|
'This year (2022) I have moved to The Netherlands with my family; specifically to the northern area of Amsterdam.'
|
|
---
|
|
|
|
<Layout title={title} description={description}>
|
|
<main>
|
|
<h1><span class="text-gradient">{title}</span></h1>
|
|
<p>
|
|
<small
|
|
>Published on the <time datetime="2022-09-20"
|
|
>20th of September, 2022</time
|
|
></small
|
|
>
|
|
</p>
|
|
<p>
|
|
This year (2022) I have moved to The Netherlands with my family;
|
|
specifically to the northern area of Amsterdam.
|
|
</p>
|
|
<p>
|
|
For work, I'm busy being a consultant, doing mostly frontend development.
|
|
</p>
|
|
<p>
|
|
If I'm not working, I am playing games on Xbox with my kid, Kahel, or most
|
|
probably trying to annoy my wife, Jen, with silly jokes.
|
|
</p>
|
|
<p>
|
|
I have also found a renewed joy in exploring opensource projects in my
|
|
spare time.
|
|
</p>
|
|
</main>
|
|
<Footer />
|
|
</Layout>
|
|
|
|
<style>
|
|
.text-gradient {
|
|
font-weight: 900;
|
|
background-image: var(--ayo-gradient);
|
|
animation: pulse 4s ease-in-out infinite;
|
|
background-size: 500% 500%;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-size: 100% 200%;
|
|
background-position-y: 100%;
|
|
border-radius: 0.4rem;
|
|
}
|
|
|
|
.highlighted-content {
|
|
margin: 1rem 0;
|
|
background: #4f39fa;
|
|
padding: 1rem;
|
|
border-radius: 0.4rem;
|
|
color: var(--text-color-light);
|
|
}
|
|
|
|
.highlighted-content code {
|
|
font-size: var(--font-size-base);
|
|
border: 0.1em solid var(--color-border);
|
|
border-radius: 4px;
|
|
padding: 0.15em 0.25em;
|
|
}
|
|
|
|
.link-card-grid {
|
|
display: grid;
|
|
gap: 1rem;
|
|
padding: 0;
|
|
}
|
|
</style>
|