diff --git a/client/index.html b/client/index.html
index c928c52..4b4d09e 100644
--- a/client/index.html
+++ b/client/index.html
@@ -3,27 +3,6 @@
@@ -97,26 +74,13 @@ export default function VideoCard({ video, onClick, onShare }: VideoCardProps) {
>
{video.title}
-
-
-
- {formatViews(video.views)}
-
-
- {formatDate(video.createdAt)}
-
-
- {onShare && (
-
- )}
+
+
+ {formatViews(video.views)}
+
+
+ {formatDate(video.createdAt)}
+
diff --git a/client/src/components/video-grid.tsx b/client/src/components/video-grid.tsx
index 48a80e7..4d9a347 100644
--- a/client/src/components/video-grid.tsx
+++ b/client/src/components/video-grid.tsx
@@ -2,7 +2,6 @@ import { useState } from "react";
import { type Video } from "@shared/schema";
import VideoCard from "./video-card";
import VideoModal from "./video-modal";
-import ShareModal from "./share-modal";
import { Button } from "@/components/ui/button";
import { ChevronDown } from "lucide-react";
@@ -17,8 +16,6 @@ interface VideoGridProps {
export default function VideoGrid({ videos, isLoading, hasMore, onLoadMore, viewMode }: VideoGridProps) {
const [selectedVideo, setSelectedVideo] = useState