From addb2e55d959514f58796536c9365b54b61de768 Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Tue, 10 Dec 2024 14:08:03 -0500 Subject: [PATCH] modified PostCarousel to use grid, among other things --- frontend/components/AuthorCard.tsx | 10 ++++---- frontend/components/Footer.tsx | 36 ++++++++++++++++++---------- frontend/components/PostCard.tsx | 3 ++- frontend/components/PostCarousel.tsx | 12 +++++----- frontend/routes/posts/index.tsx | 8 +++---- 5 files changed, 41 insertions(+), 28 deletions(-) diff --git a/frontend/components/AuthorCard.tsx b/frontend/components/AuthorCard.tsx index da633a4..8663d5b 100644 --- a/frontend/components/AuthorCard.tsx +++ b/frontend/components/AuthorCard.tsx @@ -9,11 +9,13 @@ export default function AuthorCard({ }) { return (
-
+

- © {new Date().getFullYear()}{" "} - Miller Web Solutions. All Rights Reserved. Hosted by Akamai. + © {new Date().getFullYear()} Miller Web Solutions. All Rights + Reserved. Hosted by Akamai.

diff --git a/frontend/components/PostCard.tsx b/frontend/components/PostCard.tsx index 691226d..da3f039 100644 --- a/frontend/components/PostCard.tsx +++ b/frontend/components/PostCard.tsx @@ -4,7 +4,7 @@ import { truncateString } from "../lib/truncate.ts"; export const PostCard = function PostCard({ post }: { post: Post }) { return (