Initial commit from Astro

This commit is contained in:
houston[bot]
2026-02-18 19:40:33 +08:00
committed by bisnsh
commit 745a2c94f3
88 changed files with 15600 additions and 0 deletions

18
src/pages/posts.astro Normal file
View 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>