import React from 'react'; import { useTranslation } from 'react-i18next'; import Footer from '../../components/Footer'; interface DisplaySectionProps { onStartClick?: () => void; } const DisplaySection: React.FC = ({ onStartClick }) => { const { t } = useTranslation(); // YouTube Shorts 영상 ID들 const videos = [ { id: 1, videoId: 'M3iuPZ59X1I' }, { id: 2, videoId: 'JxWQxELDHSs' }, { id: 3, videoId: 'c2ZdwhaB7S4' }, ]; return (
{/* Main visual frames container */}
{videos.map((video, index) => (