diff --git a/client/src/components/video-modal.tsx b/client/src/components/video-modal.tsx
index 6922ba3..e27a24f 100644
--- a/client/src/components/video-modal.tsx
+++ b/client/src/components/video-modal.tsx
@@ -1,10 +1,9 @@
import { useEffect, useRef } from "react";
-import { X, Share2, Copy, Check } from "lucide-react";
+import { X } from "lucide-react";
import { type Video } from "@shared/schema";
import { Button } from "@/components/ui/button";
import { apiRequest } from "@/lib/queryClient";
import Hls from "hls.js";
-import { SocialShare } from "@/components/social-share";
interface VideoModalProps {
video: Video | null;
@@ -213,19 +212,16 @@ export default function VideoModal({ video, isOpen, onClose }: VideoModalProps)
>
{video.title}
-
-
-
- {formatViews(video.views)}
-
-
- {formatDate(video.createdAt)}
-
-
- {formatDuration(video.duration)}
-
-
-
+
+
+ {formatViews(video.views)}
+
+
+ {formatDate(video.createdAt)}
+
+
+ {formatDuration(video.duration)}
+
{video.description && (
diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx
index 60d58e5..af9c65e 100644
--- a/client/src/pages/home.tsx
+++ b/client/src/pages/home.tsx
@@ -3,7 +3,6 @@ import { useQuery } from "@tanstack/react-query";
import { type Video } from "@shared/schema";
import SearchHeader from "@/components/search-header";
import VideoGrid from "@/components/video-grid";
-import VideoModal from "@/components/video-modal";
interface VideosResponse {
videos: Video[];
@@ -16,23 +15,6 @@ export default function Home() {
const [viewMode, setViewMode] = useState<"grid" | "list">("grid");
const [offset, setOffset] = useState(0);
const [allVideos, setAllVideos] = useState