diff --git a/blog/src/components/post/PostFooter.tsx b/blog/src/components/post/PostFooter.tsx index 349a672..293ccbe 100644 --- a/blog/src/components/post/PostFooter.tsx +++ b/blog/src/components/post/PostFooter.tsx @@ -12,21 +12,7 @@ import { BigTag } from '../tags/BigTag'; export const PostFooter = ({ post }: { post: BlogPostMetadata }) => { return (
- {/* add a horizontal line to indicate start of footer */} -
-
1 ? 'sm:grid-cols-2' : '' - )} - > - {post.authors.map((author) => ( - - ))} -
- {/* insert share buttons for twitter, linkedin and facebook */} -
{post.tags.map((tag) => ( @@ -69,6 +55,16 @@ export const PostFooter = ({ post }: { post: BlogPostMetadata }) => {
+
1 ? 'sm:grid-cols-2' : '' + )} + > + {post.authors.map((author) => ( + + ))} +
); };