67 lines
2 KiB
Text
67 lines
2 KiB
Text
---
|
|
import Layout from "../layouts/Layout.astro";
|
|
import Footer from "../components/Footer.astro";
|
|
import Posts from "../components/Posts.astro";
|
|
|
|
const posts = await Astro.glob("./now/and-then/posts/*.astro");
|
|
---
|
|
|
|
<Layout title="Now" description="What is Ayo Ayco currently up to?">
|
|
<main>
|
|
<h1><span class="text-gradient">Now</span></h1>
|
|
<!--em>What am I currently up to? Updated on the 9th of September, 2024</em-->
|
|
<em>Updated on the 19th of April, 2024</em>
|
|
|
|
<p>After a while of reading and deep consideration, I have decided to pick up Python as my chosen general-purpose programming language.</p>
|
|
|
|
<p>This very website is now running on a <a href="https://flask.palletsprojects.com/">Flask</a> server. And I have started working on a self-hosted public <a href="https://git.sr.ht/~ayoayco/threads">/threads</a> project also on Python.</p>
|
|
|
|
<p>Will probably write some blogs about the journey, but I have already organized the collection of repositories for my <a href="https://sr.ht/~ayoayco/personal-site">personal site</a></p>
|
|
|
|
<Posts posts={posts} title="Previously..." />
|
|
<hr />
|
|
<em><a href="https://nownownow.com/about">About now pages</a></em>
|
|
<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>
|