diff --git a/src/components/shared/Card/Card.tsx b/src/components/shared/Card/Card.tsx index a1df872..f1fe0a3 100644 --- a/src/components/shared/Card/Card.tsx +++ b/src/components/shared/Card/Card.tsx @@ -10,9 +10,7 @@ interface Props extends HTMLAttributes { export function Card({ thumbnail, title, description, ...restProps }: Props) { return (
-
- -
+

{title}

{description}

diff --git a/src/components/shared/ImageFrame/ImageFrame.tsx b/src/components/shared/ImageFrame/ImageFrame.tsx index 5223c15..6b8f47f 100644 --- a/src/components/shared/ImageFrame/ImageFrame.tsx +++ b/src/components/shared/ImageFrame/ImageFrame.tsx @@ -13,13 +13,15 @@ export function ImageFrame({ ...restProps }: Props) { return ( - {alt} +
+ {alt} +
); }