| | <!DOCTYPE html> |
| | <html lang="pt-BR"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>Sobre - UnityLeadCapture</title> |
| | <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| | <link rel="stylesheet" href="style.css"> |
| | <script src="https://cdn.tailwindcss.com"></script> |
| | <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| | <script src="https://unpkg.com/feather-icons"></script> |
| | </head> |
| | <body class="min-h-screen flex flex-col bg-gray-900 text-white"> |
| | <custom-navbar></custom-navbar> |
| | |
| | <main class="flex-grow py-12 px-4"> |
| | <div class="max-w-4xl mx-auto"> |
| | <h1 class="text-4xl md:text-5xl font-bold text-center mb-8 bg-gradient-to-r from-purple-400 to-blue-500 bg-clip-text text-transparent"> |
| | Sobre o UnityLeadCapture 🎮 |
| | </h1> |
| | |
| | <div class="bg-gray-800 rounded-2xl p-8 mb-8"> |
| | <h2 class="text-2xl font-bold mb-4">Nossa Missão</h2> |
| | <p class="text-gray-300 mb-6"> |
| | O UnityLeadCapture nasceu da necessidade de conectar desenvolvedores Unity talentosos |
| | com empresas que buscam profissionais qualificados no mercado brasileiro e internacional. |
| | </p> |
| | <p class="text-gray-300"> |
| | Acreditamos que o Brasil possui um enorme potencial na indústria de games e |
| | nossa plataforma é a ponte que faltava entre o talento e a oportunidade. |
| | </p> |
| | </div> |
| | |
| | <div class="grid md:grid-cols-2 gap-8"> |
| | <div class="bg-gray-800 rounded-2xl p-6"> |
| | <div class="w-12 h-12 bg-purple-500 rounded-full flex items-center justify-center mb-4"> |
| | <i data-feather="target" class="text-white"></i> |
| | </div> |
| | <h3 class="text-xl font-bold mb-4">Tecnologia</h3> |
| | <p class="text-gray-300"> |
| | Nossa plataforma utiliza as mais modernas tecnologias web com backend robusto |
| | e banco de dados MySQL para garantir performance e segurança dos dados. |
| | </p> |
| | </div> |
| | |
| | <div class="bg-gray-800 rounded-2xl p-6"> |
| | <div class="w-12 h-12 bg-blue-500 rounded-full flex items-center justify-center mb-4"> |
| | <i data-feather="users" class="text-white"></i> |
| | </div> |
| | <h3 class="text-xl font-bold mb-4">Comunidade</h3> |
| | <p class="text-gray-300"> |
| | Mais do que uma plataforma, somos uma comunidade de desenvolvedores |
| | apaixonados por Unity e tecnologia. |
| | </p> |
| | </div> |
| | </div> |
| | |
| | |
| | <div class="mt-12"> |
| | <h2 class="text-3xl font-bold text-center mb-8">Nossa Equipe 👥</h2> |
| | <div class="grid md:grid-cols-3 gap-6"> |
| | <div class="text-center"> |
| | <img src="http://static.photos/technology/200x200/1" alt="Fundador" class="w-24 h-24 rounded-full mx-auto mb-4"> |
| | <h4 class="font-bold">João Silva</h4> |
| | <p class="text-gray-400 text-sm">Fundador & Unity Dev</p> |
| | </div> |
| | <div class="text-center"> |
| | <img src="http://static.photos/technology/200x200/2" alt="Co-fundadora" class="w-24 h-24 rounded-full mx-auto mb-4"> |
| | <h4 class="font-bold">Maria Santos</h4> |
| | <p class="text-gray-400 text-sm">Co-fundadora & Backend</p> |
| | </div> |
| | <div class="text-center"> |
| | <img src="http://static.photos/technology/200x200/3" alt="Designer" class="w-24 h-24 rounded-full mx-auto mb-4"> |
| | <h4 class="font-bold">Pedro Costa</h4> |
| | <p class="text-gray-400 text-sm">UX/UI Designer</p> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </main> |
| | |
| | <custom-footer></custom-footer> |
| | |
| | <script src="components/navbar.js"></script> |
| | <script src="components/footer.js"></script> |
| | <script src="script.js"></script> |
| | <script> |
| | feather.replace(); |
| | </script> |
| | </body> |
| | </html> |