Astroad -> Paystro
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

Closes autonomic-cooperative/astro-payload-template#8
This commit is contained in:
3wc
2024-05-18 18:04:24 -03:00
parent c2219516b0
commit 37c0cd98b7
5 changed files with 15 additions and 15 deletions

View File

@ -1,6 +1,6 @@
{
"name": "astroad",
"description": "Astroad - Astro",
"name": "paystro",
"description": "Paystro - Astro",
"type": "module",
"version": "1.1",
"license": "MIT",

View File

@ -5,12 +5,12 @@ import { getPosts } from "@/utils/payload";
const posts = await getPosts();
---
<Layout title="Astroad">
<Layout title="Paystro">
<main class="" >
<h1 class="font-bold text-5xl">Astroad</h1>
<h1 class="font-bold text-5xl">Paystro</h1>
<p class="mt-3 text-lg">
Astroad is a pre-configured setup for Astro and Payloadcms that makes it
easy to get started with building your website. With Astroad, you'll have
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.
This makes it easy to test and develop your website before deploying it to
a production environment.

View File

@ -18,7 +18,7 @@ const post = id && (await getPost(id));
{
post ? (
<Layout title={`Astroad | ${post.title!}`}>
<Layout title={`Paystro | ${post.title!}`}>
<div class="space-y-3 my-3">
<a href="/">BACK</a>
<h1 class="font-bold text-5xl" transition:name=`title-${post.id}`>{post.title}</h1>