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.
Written by{" "} @@ -30,4 +30,5 @@ export type Post = { title: string; body: string; created_at: string; + slug: string; }; diff --git a/frontend/components/PostCarousel.tsx b/frontend/components/PostCarousel.tsx index c11dd99..efa6c30 100644 --- a/frontend/components/PostCarousel.tsx +++ b/frontend/components/PostCarousel.tsx @@ -6,12 +6,12 @@ interface PostOpts { export const PostCarousel = function PostCarousel({ posts }: PostOpts) { return ( -