diff --git a/apps/web/src/components/MediumCard.tsx b/apps/web/src/components/MediumCard.tsx index 5ff9071..a6f327f 100644 --- a/apps/web/src/components/MediumCard.tsx +++ b/apps/web/src/components/MediumCard.tsx @@ -26,64 +26,62 @@ export const MediumCard: React.FC = ({ post }) => { }); return ( - - -
- {/* Thumbnail */} -
- {post.thumbnail ? ( - {title} - ) : ( - - )} + +
+ {/* Premium Large Thumbnail Section */} +
+ {post.thumbnail ? ( + {title} + ) : ( + + )} + {/* Subtle inset shadow over the image */} +
+
+ + {/* Content Section */} +
+
+ +
+ {tags?.slice(0, 3).map((tag) => ( + + #{tag} + + ))} +
-
-
- -
- {tags?.slice(0, 2).map((tag) => ( - - #{tag} - - ))} -
-
+
+

+ {title} +

+

+ {description} +

+
-
-

- {title} -

-

- {description} -

-
- -
- Beitrag öffnen - +
+ Read Article +
+
- +
); };