MCPcopy Create free account
hub / github.com/3eif/gitmotion / ExampleGenerations

Function ExampleGenerations

website/src/components/example-generations.tsx:73–84  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

71];
72
73export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected