import { Logo } from "./Logo"; import { Badge } from "@/components/ui/badge"; const cols = [ { title: "Produto", items: [ { label: "Recursos", href: "#recursos" }, { label: "Planos", href: "#planos" }, { label: "Skills", href: "#" }, { label: "Mudanças", href: "#" }, ], }, { title: "Empresa", items: [ { label: "Sobre", href: "#" }, { label: "Blog", href: "#" }, { label: "Contato", href: "#" }, ], }, { title: "Legal", items: [ { label: "Termos de Uso", href: "#" }, { label: "Política de Privacidade", href: "#" }, { label: "LGPD", href: "#" }, ], }, ]; export function LandingFooter() { return ( ); }