import { Card, CardContent } from "@/components/ui/card" import { CheckCircle, Wifi, Users, Shield, Trash2, VolumeX, Lock, AlertTriangle, Ban } from "lucide-react" export default function CoworkingRules() { const rules = [ { icon: , text: "Silence and mutual respect / Silencio y respeto mutuo" }, { icon: , text: "Leave your workstation clean / Deja tu puesto limpio" }, { icon: , text: "Proper use of equipment / Uso correcto de los equipos" }, { icon: , text: "Respect confidentiality / Respeta la confidencialidad" }, { icon: , text: "No smoking or strong-smelling food / Prohibido fumar o alimentos con olores fuertes" }, { icon: , text: "Internet for work purposes only / Internet solo para trabajo" }, { icon: , text: "Access allowed only to registered residents / Acceso permitido solo a residentes registrados" }, { icon: , text: "Report issues immediately / Notifica averías de inmediato" } ] return (

Coworking Space Rules
Normas del Espacio de Co-Working

{rules.map((rule, index) => (
{rule.icon}

{rule.text}

))}
) }