morph title
Signed-off-by: Max Schmidt <max.schmidt@outlook.de>
This commit is contained in:
parent
3363396db3
commit
51f8971604
@ -7,7 +7,7 @@ const posts = await getPosts();
|
||||
|
||||
<Layout title="Astroad">
|
||||
<main class="" >
|
||||
<h1>Astroad</h1>
|
||||
<h1 transition:animate="fade">Astroad</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
|
||||
@ -27,7 +27,7 @@ const posts = await getPosts();
|
||||
posts.map((post) => (
|
||||
<a href={`/posts/${post.id}/`}>
|
||||
<article class="text-gray bg-gray-light px-5 py-3 rounded-md shadow-md w-64 text-center hover:-translate-y-1 transition-transform">
|
||||
<h3>{post.title}</h3>
|
||||
<h3 transition:name=`title-${post.id}`>{post.title}</h3>
|
||||
{post.publishedDate && (
|
||||
<p>
|
||||
{new Date(post.publishedDate).toLocaleDateString("de-DE")}
|
||||
|
@ -21,7 +21,7 @@ const post = id && (await getPost(id));
|
||||
<Layout title={`Astroad | ${post.title!}`}>
|
||||
<div class="space-y-3 my-3">
|
||||
<a href="/">BACK</a>
|
||||
<h1>{post.title}</h1>
|
||||
<h1 transition:name=`title-${post.id}`>{post.title}</h1>
|
||||
{post.content && <Content content={post.content} />}
|
||||
</div>
|
||||
</Layout>
|
||||
|
Loading…
Reference in New Issue
Block a user