diff --git a/client/src/components/video-card.tsx b/client/src/components/video-card.tsx index 2c7d318..ce86daf 100644 --- a/client/src/components/video-card.tsx +++ b/client/src/components/video-card.tsx @@ -72,10 +72,7 @@ export default function VideoCard({ video, onClick }: VideoCardProps) { {formatDuration(video.duration)} - {/* VAST Ad monetization indicator */} -
- 💰 OGLAS -
+ {/* Play button overlay */}
diff --git a/client/src/pages/home.tsx b/client/src/pages/home.tsx index 761a25d..0bde475 100644 --- a/client/src/pages/home.tsx +++ b/client/src/pages/home.tsx @@ -4,7 +4,7 @@ import { type Video } from "@shared/schema"; import SearchHeader from "@/components/search-header"; import VideoGrid from "@/components/video-grid"; import AdSettings from "@/components/ad-settings"; -import AdExplanation from "@/components/ad-explanation"; + interface VideosResponse { videos: Video[]; @@ -18,7 +18,7 @@ export default function Home() { const [offset, setOffset] = useState(0); const [allVideos, setAllVideos] = useState([]); const [showAdSettings, setShowAdSettings] = useState(false); - const [showAdExplanation, setShowAdExplanation] = useState(false); + // Fetch videos const { data: videosResponse, isLoading, refetch } = useQuery({ @@ -79,7 +79,6 @@ export default function Home() { onViewChange={setViewMode} currentView={viewMode} onAdSettingsOpen={() => setShowAdSettings(true)} - onAdExplanationOpen={() => setShowAdExplanation(true)} />
@@ -98,11 +97,7 @@ export default function Home() { onClose={() => setShowAdSettings(false)} /> - {/* Ad Explanation Modal */} - setShowAdExplanation(false)} - /> + {/* Footer */}