update now page: CPSA

This commit is contained in:
Ayo 2023-09-18 17:21:23 +02:00
parent b17a0480a4
commit 67ba38ecf8
4 changed files with 75 additions and 14 deletions

View file

@ -31,7 +31,7 @@ note = note.replace('<span class="">ayco.io/gh/', '<span class="">').replace('<s
<div class="highlighted__note" set:html={note} />
<a href="/now" class="now-wrapper">
<span class="now-label">Now</span>
<span class="status">Building a Cozy Web without borders...</span>
<span class="status">Certified Software Architecture Professional</span>
</a>
</div>
</div>

View file

@ -10,18 +10,13 @@ const posts = await Astro.glob("./now/and-then/posts/*.astro");
<main>
<h1><span class="text-gradient">Now</span></h1>
<em>What am I currently up to?</em>
<p>
Recently started a new project that aims to be a modern-day reading assistant, called <a href="https://ayco.io/gh/cozy">Cozy 🧸</a>.
</p>
<p>
The full motivation as of the moment, I've written on <a href="https://ayos.blog/building-a-cozy-web/">my blog</a>.
</p>
<p>
Also started exploring ways to interact on the web without being confined on a centralized solution that big tech companies have lured us into.
</p>
<p>
I mean protocols that allow websites and people to exchange messages with each other without borders, like <a href="https://www.w3.org/TR/webmention/">webmention</a>, <a href="https://www.w3.org/TR/activitypub/">activitypub</a>, and the likes.
</p>
<p>🎉 Thrilled to share I am now a Certified Professional for Software Architecture (CPSA-F®) after having completed and passed the <a href="https://www.isaqb.org/" target="_blank">iSAQB® International Software Architecture Qualification Board</a>'s intensive training and examination.</p>
<p>This means I have the necessary basis for facilitating / participating in architectural design activities for software development.</p>
<p>Having a consistent language in Software Architecture is beneficial when communicating with stakeholders and clarifying consistent patterns and principles that guide the development of software products.</p>
<Posts posts={posts} title="Previously..." />
<hr />
<em><a href="https://nownownow.com/about">About now pages</a></em>

View file

@ -7,7 +7,7 @@ const description = "I have been living now in Amsterdam for a little over a yea
<Layout title={title} description={description}>
<main>
<h1><span class="text-gradient">The Fediverse and Other Passion Projects</span></h1>
<h1><span class="text-gradient">{title}</span></h1>
<p>
I have been living now in Amsterdam for a little over a year with my wife and son.
</p>

View file

@ -0,0 +1,66 @@
---
import Layout from "../../../../layouts/Layout.astro";
import Footer from "../../../../components/Footer.astro";
const title = "Building a Cozy Web without borders...";
const description = "A project that aims to be a modern-day reading assistant"
---
<Layout title={title} description={description}>
<main>
<h1><span class="text-gradient">{title}</span></h1>
<p>
Recently started a new project that aims to be a modern-day reading assistant, called <a href="https://ayco.io/gh/cozy">Cozy 🧸</a>.
</p>
<p>
The full motivation as of the moment, I've written on <a href="https://ayos.blog/building-a-cozy-web/">my blog</a>.
</p>
<p>
Also started exploring ways to interact on the web without being confined on a centralized solution that big tech companies have lured us into.
</p>
<p>
I mean protocols that allow websites and people to exchange messages with each other without borders, like <a href="https://www.w3.org/TR/webmention/">webmention</a>, <a href="https://www.w3.org/TR/activitypub/">activitypub</a>, and the likes.
</p>
<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>