This repository has been archived on 2025-12-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BreadnetV3/web/src/pages/index.astro
2025-11-18 15:18:10 +13:00

27 lines
876 B
Plaintext

---
import Base from "src/layout/Base.astro"
import RecentPosts from "@components/index/recentPosts"
export const prerender = false
---
<Base>
<div slot="sidebar" class="text-left">
<p>New website new me!</p> <br>
<p>This is the third major iteration of the website, and by far the most flexible and best designed (imo!)</p><br>
<!-- todo: write this post lmfao -->
<p>If you're interested, I actually wrote <a href="/posts/design-for-purpose">a post</a> about the new design and all that went into it.</p><br>
<p>I'm... really not sure what to put on this landing page, make sure to check out some of the photos and posts I've added recently, I've been totally revamping those too and I'm really proud of this batch.</p><br>
<p>Hope you enjoy your time here :)</p>
</div>
<!-- <div slot="content" class="md:py-10">
<RecentPosts/>
</div> -->
</Base>