Signed-off-by: Max Schmidt <max.schmidt@outlook.de>
This commit is contained in:
Max Schmidt
2023-05-17 11:56:36 +02:00
parent 7f01d39909
commit d30d3e61b9
16 changed files with 133 additions and 54 deletions

View File

@ -18,8 +18,8 @@ const post = id && (await getPost(id));
{
post ? (
<Layout title={post.title!}>
<div class="max-w-3xl mx-auto space-y-3 my-3">
<Layout title={`Astroad | ${post.title!}`}>
<div class="space-y-3 my-3">
<a href="/">BACK</a>
<h1>{post.title}</h1>
{post.content && <Content content={post.content} />}