17 lines
532 B
Plaintext
17 lines
532 B
Plaintext
---
|
|
import PageHeading from "../components/page-heading.astro";
|
|
import Layout from "../layouts/main.astro";
|
|
---
|
|
|
|
<Layout title="My Writing">
|
|
<section class="relative z-20 max-w-7xl mx-auto my-12 px-7 lg:px-0">
|
|
<PageHeading
|
|
title="My Writing"
|
|
description="Dive into my musings on life and tech in my latest posts; a blend of introspection and innovation. Keep an eye out for fresh insights and updates!"
|
|
/>
|
|
|
|
<div class="z-50 flex flex-col items-stretch w-full gap-5 my-8">
|
|
</div>
|
|
</section>
|
|
</Layout>
|