?!?!?!?!?!?!
All checks were successful
Docker Deploy / build-and-push (push) Successful in 1m50s

This commit is contained in:
Atridad Lahiji 2025-04-24 12:20:48 -06:00
parent 15b45f2a10
commit 5281eb71ab
Signed by: atridad
SSH key fingerprint: SHA256:LGomp8Opq0jz+7kbwNcdfTcuaLRb5Nh0k5AchDDb438
2 changed files with 8 additions and 1 deletions

View file

@ -13,7 +13,7 @@ export default function PostCard(props: { post: Post }) {
<p class="text-center text-base-100 break-words">{post.blurb}</p> <p class="text-center text-base-100 break-words">{post.blurb}</p>
<div class="flex flex-wrap items-center justify-center text-base-100 opacity-75 gap-2 text-sm sm:text-base"> <div class="flex flex-wrap items-center justify-center text-base-100 opacity-75 gap-2 text-sm sm:text-base">
<LuClock className="flex-shrink-0" /> <LuClock class="flex-shrink-0" />
<span> <span>
{post.publishedAt!.toLocaleDateString("en-us", { {post.publishedAt!.toLocaleDateString("en-us", {
month: "long", month: "long",

7
islands/Example.tsx Normal file
View file

@ -0,0 +1,7 @@
export default function Example() {
return (
<div class="flex flex-row gap-4 text-3xl">
Example
</div>
);
}