"use client" import { AuthGate } from "@/components/auth-gate" import { VideoCard } from "@/components/video-card" import { videos } from "@/lib/data" export function VideosContent() { return (

Video Tutorials

Learn how to get the most out of your Android box with our step-by-step video guides

{videos.map((video) => ( ))}
) }