refactor(index): remove authors and tags leftovers

This commit is contained in:
z0x 2025-04-27 11:17:29 -04:00
parent 6c7b8d823a
commit a933186b87
3 changed files with 0 additions and 32 deletions

View file

@ -7,7 +7,6 @@ import TableOfContents from "@/components/TableOfContents.astro";
import { Button } from "@/components/ui/button";
import { Separator } from "@/components/ui/separator";
import Layout from "@/layouts/Layout.astro";
import { parseAuthors } from "@/lib/server-utils";
import { formatDate, readingTime } from "@/lib/utils";
import { Icon } from "astro-icon/components";
@ -48,8 +47,6 @@ const prevPost = getPrevPost(currentPostId);
const post = Astro.props;
const { Content, headings } = await render(post);
const authors = await parseAuthors(post.data.authors ?? []);
---
<Layout title={post.data.title} description={post.data.description}>