import React from 'react'; import { BookUser, MapPin, Phone, CheckCircle2, Search, Plus, ExternalLink, ShieldCheck, Star } from 'lucide-react'; import { Card, CardHeader, CardTitle, CardContent } from '@/components/ui/card'; import { Badge } from '@/components/ui/badge'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { motion } from 'framer-motion'; import { cn } from "@/lib/utils"; /** * Cadastro de Prestadores (Oficinas e Parceiros). * Listagem conforme mockup. */ export const PartnerListView = () => { const oficinas = [ { id: 1, nome: 'Oficina Central', cidade: 'São Paulo', uf: 'SP', status: 'Ativo', telefone: '(11) 9999-9999', score: 4.8 }, { id: 2, nome: 'Pneus e Cia', cidade: 'Manaus', uf: 'AM', status: 'Ativo', telefone: '(92) 8888-8888', score: 4.5 }, { id: 3, nome: 'Auto Elétrica Sul', cidade: 'Porto Alegre', uf: 'RS', status: 'Inativo', telefone: '(51) 7777-7777', score: 3.9 } ]; return (
Rede Credenciada

Oficinas e Parceiros

Gestão de prestadores de serviço e rede técnica

Filtros: Todos ativos
{oficinas.map((o) => ( ))}
Oficina / Estabelecimento Localização Contato Direto Status Ações
{o.nome}
{o.score}
{o.cidade}
{o.uf} • BR
{o.telefone}
{o.status}
{/* Dynamic Summary */}

Total Ativos

124

Especialidades

12+

SLA Médio

4.8h
); };