diff --git a/frontend/src/components/video/VideoCard.tsx b/frontend/src/components/video/VideoCard.tsx
index fd90eff..0a5e6a4 100644
--- a/frontend/src/components/video/VideoCard.tsx
+++ b/frontend/src/components/video/VideoCard.tsx
@@ -27,19 +27,37 @@ const VideoCard = ({
return (
-

{
- if (imgSrc !== fallbackThumbnail) {
- setImgSrc(fallbackThumbnail);
- }
- }}
- />
+
+

{
+ if (imgSrc !== fallbackThumbnail) {
+ setImgSrc(fallbackThumbnail);
+ }
+ }}
+ />
+
+
+ {formatTime(duration)}
+
+
+
-
{title}
-
{formatTime(duration)}
+
{title == "" ? "(No Title)" : title}
diff --git a/frontend/src/pages/MyClips.tsx b/frontend/src/pages/MyClips.tsx
index f5c1e57..292514e 100644
--- a/frontend/src/pages/MyClips.tsx
+++ b/frontend/src/pages/MyClips.tsx
@@ -20,7 +20,7 @@ const MyClips = () => {
duration={clip.duration}
thumbnailPath={clip.thumbnailPath}
videoPath={clip.videoPath}
- className={"w-40 p-5"}
+ className={"w-40 m-5"}
/>
))}