- Paystro
-
+
Paystro
+
Paystro is a pre-configured setup for Astro and Payloadcms that makes it
easy to get started with building your website. With Paystro, you'll have
a complete development environment that you can run locally using Docker.
diff --git a/astro/src/pages/posts/[id].astro b/astro/src/pages/posts/[id].astro
index 3f5ae6c..8e65a1d 100644
--- a/astro/src/pages/posts/[id].astro
+++ b/astro/src/pages/posts/[id].astro
@@ -19,10 +19,10 @@ const post = id && (await getPost(id));
{
post ? (
-
-
{post.title}
+
+ {post.title}
{post.content && }
-
+
) : (
404
diff --git a/astro/tailwind.config.cjs b/astro/tailwind.config.cjs
index cf175ca..cb1bd5d 100644
--- a/astro/tailwind.config.cjs
+++ b/astro/tailwind.config.cjs
@@ -12,6 +12,7 @@ module.exports = {
tertiary: "rgba(var(--tertiary))",
text: "rgba(var(--text))",
textInverted: "rgba(var(--textInverted))",
+ link: "rgba(var(--link))",
background: "rgba(var(--background))",
},
},