Initial commit from Astro
This commit is contained in:
18
src/pages/posts.astro
Normal file
18
src/pages/posts.astro
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
import PageHeading from "../components/page-heading.astro";
|
||||
import PostsLoop from "../components/posts-loop.astro";
|
||||
import Layout from "../layouts/main.astro";
|
||||
---
|
||||
|
||||
<Layout title="My Writing">
|
||||
<section class="relative z-20 max-w-2xl 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">
|
||||
<PostsLoop count="999999999" />
|
||||
</div>
|
||||
</section>
|
||||
</Layout>
|
||||
Reference in New Issue
Block a user