import { ArrowRight, Github } from 'lucide-react'; import { motion } from 'framer-motion'; export default function RepoInputForm({ value, onChange, onSubmit, examples = [] }) { return (
onChange(event.target.value)} onKeyDown={(event) => event.key === 'Enter' && onSubmit()} placeholder="https://github.com/owner/repository" className="w-full bg-transparent font-mono text-sm text-slate-200 outline-none placeholder:text-slate-600" />
Analyze

Example Repositories

{examples.map((repo) => ( ))}
); }