reaallly not sure on some of this stuff now huh

This commit is contained in:
2025-11-18 15:13:46 +13:00
parent 3378844823
commit 4310c90f48
3 changed files with 15 additions and 8 deletions

View File

@@ -13,9 +13,13 @@ const links = [
lnk: "mailto:contact@breadone.net" lnk: "mailto:contact@breadone.net"
}, },
{ {
txt: "copyright", txt: "about",
lnk: "/copyright" lnk: "/about"
} },
// {
// txt: "copyright",
// lnk: "/copyright"
// }
] ]
--- ---

View File

@@ -23,7 +23,7 @@ const postImages = await Promise.all( posts.items.map(p => pb.files.getURL(p, p.
<div class="flex md:flex-col flex-row gap-3 md:gap-2 flex-1"> <div class="flex md:flex-col flex-row gap-3 md:gap-2 flex-1">
<time class="hidden md:block text-sm text-gray-500" datetime={p.publishDate}>{getFormattedDate(p.publishDate)}</time> <time class="hidden md:block text-sm text-gray-500" datetime={p.publishDate}>{getFormattedDate(p.publishDate)}</time>
<a href={`/posts/${p.slug}`} class="shrink-0"> <a href={`/posts/${p.slug}`} class="shrink-0">
<img class="w-24 h-24 md:w-full md:h-48 object-cover rounded-lg" src={postImages[i]} alt={p.title}/> <img class="w-24 h-24 md:w-full md:h-48 object-cover rounded-sm" src={postImages[i]} alt={p.title}/>
</a> </a>
<div class="flex flex-col justify-start md:justify-start"> <div class="flex flex-col justify-start md:justify-start">

View File

@@ -9,13 +9,16 @@ export const prerender = false
<Base> <Base>
<div slot="sidebar" class="text-left"> <div slot="sidebar" class="text-left">
<p>New website new me!</p> <br> <p>New website new me!</p> <br>
<p>Check out some of the photos and posts I've added recently, as well as the new design.</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 --> <!-- todo: write this post lmfao -->
<p>If you're interested, I actually wrote a post about the new design and all that went into it.</p> <p>If you're interested, I actually wrote a post 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>
</div> </div>
<div slot="content" class="md:py-10"> <!-- <div slot="content" class="md:py-10">
<RecentPosts/> <RecentPosts/>
</div> </div> -->
</Base> </Base>