()
| 71 | ]; |
| 72 | |
| 73 | export default function ExampleGenerations() { |
| 74 | return ( |
| 75 | <div className="flex flex-col mx-auto w-full pt-11 space-y-5"> |
| 76 | <h2 className="text-2xl font-semibold text-left">Example Generations</h2> |
| 77 | <div className="grid grid-cols-1 md:grid-cols-2 gap-8 w-full"> |
| 78 | {videos.map((video, index) => ( |
| 79 | <VideoItem key={index} {...video} /> |
| 80 | ))} |
| 81 | </div> |
| 82 | </div> |
| 83 | ); |
| 84 | } |
nothing calls this directly
no outgoing calls
no test coverage detected