diff --git a/client/src/components/bunny-video-modal.tsx b/client/src/components/bunny-video-modal.tsx
index 992d8ff..1754f1e 100644
--- a/client/src/components/bunny-video-modal.tsx
+++ b/client/src/components/bunny-video-modal.tsx
@@ -263,13 +263,6 @@ export default function BunnyVideoModal({ video, isOpen, onClose, onEdit }: Bunn
{formatDate(video.createdAt)}
- {video.category && (
-
-
- {video.category}
-
-
- )}
{video.description && (
diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx
index 1fc8427..e651286 100644
--- a/client/src/components/video-card.tsx
+++ b/client/src/components/video-card.tsx
@@ -104,30 +104,7 @@ export default function VideoCard({ video, onClick }: VideoCardProps) {
{formatDate(video.createdAt)}
- {video.category && (
-
- {video.category}
-
- )}
-
- {/* Tags display */}
- {video.tags && video.tags.length > 0 && (
-
- {video.tags.slice(0, 3).map((tag, index) => (
-
- #{tag}
-
- ))}
- {video.tags.length > 3 && (
- +{video.tags.length - 3} more
- )}
-
- )}
);
diff --git a/client/src/pages/VideoPage.tsx b/client/src/pages/VideoPage.tsx
index 0347ff7..59f4235 100644
--- a/client/src/pages/VideoPage.tsx
+++ b/client/src/pages/VideoPage.tsx
@@ -351,30 +351,8 @@ export default function VideoPage() {
{formatViews(currentVideo.views)} views
{formatDuration(currentVideo.duration)}
{formatDate(currentVideo.createdAt)}
- {currentVideo.category && (
-
- {currentVideo.category}
-
- )}
- {/* Tags Section */}
- {currentVideo.tags && currentVideo.tags.length > 0 && (
-
-
Tags
-
- {currentVideo.tags.map((tag, index) => (
-
- #{tag}
-
- ))}
-
-
- )}
-
{currentVideo.description ? (