feat: new now page

This commit is contained in:
Ayo Ayco 2025-02-05 17:02:15 +01:00
parent e95440db21
commit d8ac2df0ec
5 changed files with 103 additions and 10 deletions

View file

@ -0,0 +1,7 @@
{
"title": "At FOSDEM Social Web",
"description": "This Saturday (Feb 1) I will give a talk about Elk at FOSDEM 2025 Social Web dev room!",
"publishDate": "2025-01-31",
"publishedOn": "the 31st of January, 2025",
"publishState": "while preparing to go to Brussels :)"
}

View file

@ -0,0 +1,9 @@
## At FOSDEM Social Web
This Saturday (Feb 1) I will give a talk about Elk at FOSDEM 2025 Social Web dev room!
Theres plenty to talk about in the Social Web space, and the line up looks really interesting! Particularly looking forward to hearing about Federation @ Forgejo 😄
Glad to be part of this. See you if youre there!
👉 <a href="https://fosdem.org/2025/schedule/track/social-web/">See the schedule</a>

View file

@ -1,7 +1,7 @@
{
"title": "At FOSDEM Social Web",
"description": "This Saturday (Feb 1) I will give a talk about Elk at FOSDEM 2025 Social Web dev room!",
"publishDate": "2025-01-31",
"publishedOn": "the 31st of January, 2025",
"publishState": "while preparing to go to Brussels :)"
"title": "Binge-watching, playing, and recovering",
"description": "",
"publishDate": "2025-02-05",
"publishedOn": "",
"publishState": ""
}

View file

@ -1,9 +1,13 @@
## At FOSDEM Social Web
## Binge-watched [Arcane season 2](https://www.netflix.com/tudum/articles/arcane-season-2-release-date-photos)
This Saturday (Feb 1) I will give a talk about Elk at FOSDEM 2025 Social Web dev room!
I did not want to, but I started and can't stop watching! The first season was an absolute masterpiece, this second season is... I don't know how to say it best... it has been a loooong while since I was this absorbed in a story. It's epic, well-written, gripping, unpredictably good. Music is perfect. Ah, five stars is not enough I think. :)
Theres plenty to talk about in the Social Web space, and the line up looks really interesting! Particularly looking forward to hearing about Federation @ Forgejo 😄
## Playing [Final Fantasy VII Remake for PC](https://en.wikipedia.org/wiki/Final_Fantasy_VII_Remake)
Glad to be part of this. See you if youre there!
I am in the 8th chapter (I think) and what I like about this one is that it is so arcade-y it is easy to pick up and understand without thinking about it too much. Right amount of hack-and-slash combat and tactics (choosing skills & items to use for party members, switching between them, etc.)
👉 <a href="https://fosdem.org/2025/schedule/track/social-web/">See the schedule</a>
## This is progress
After COVID and emigrating to The Netherlands (a different story by itself), I don't think I ever really had the headspace to enjoy these things. It's weird. I have been trying, but even watching a movie is not really enjoyable.
I think me being able to enjoy watching series and a game like this is progress. 2021 has caused a huge adjustment for me (bordering trauma). And I feel that this "progress" is further indication that I am recovering.

View file

@ -0,0 +1,73 @@
---
import Layout from '../../../../layouts/Layout.astro'
import Footer from '../../../../components/Footer.astro'
const title = `At FOSDEM Social Web`
const description = `This Saturday (Feb 1) I will give a talk about Elk at FOSDEM 2025 Social Web dev room!`
const publishedOn = `the 31st of January, 2025`
const publishDate = `2025-01-31`
const publishState = `while preparing to go to Brussels :)`
const content = `<h2>At FOSDEM Social Web</h2>
<p>This Saturday (Feb 1) I will give a talk about Elk at FOSDEM 2025 Social Web dev room!</p>
<p>Theres plenty to talk about in the Social Web space, and the line up looks really interesting! Particularly looking forward to hearing about Federation @ Forgejo 😄</p>
<p>Glad to be part of this. See you if youre there!</p>
<p>👉 See the schedule</p>`
---
<Layout title={title} description={description}>
<main>
<h1><span class="text-gradient">{title}</span></h1>
<p>
<em>
Published on
<time datetime={publishDate}>{publishedOn}</time>
{publishState}
</em>
</p>
<Fragment set:html={content} />
<Footer />
</main>
</Layout>
<style>
main {
margin: auto;
padding: 1em;
max-width: var(--content-width);
}
.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(--color-bg);
}
.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>