feat: initial commit - 1000apps SaaS container
This commit is contained in:
@@ -0,0 +1,153 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="pt-BR">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>1000Apps - Sua PlayStore de Ferramentas Úteis</title>
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<style>
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
|
||||
body { font-family: 'Inter', sans-serif; }
|
||||
.gradient-bg { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
|
||||
.card-hover { transition: transform 0.2s, box-shadow 0.2s; }
|
||||
.card-hover:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }
|
||||
</style>
|
||||
</head>
|
||||
<body class="bg-gray-50">
|
||||
<!-- Header -->
|
||||
<header class="bg-white shadow-sm">
|
||||
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-4 flex justify-between items-center">
|
||||
<h1 class="text-2xl font-bold text-gray-900">1000Apps</h1>
|
||||
<div class="space-x-4">
|
||||
<a href="/signin" class="text-gray-600 hover:text-gray-900 font-medium">Entrar</a>
|
||||
<a href="/signup" class="bg-blue-600 text-white px-4 py-2 rounded-lg font-medium hover:bg-blue-700 transition">Cadastrar</a>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Hero Section -->
|
||||
<section class="gradient-bg text-white py-20">
|
||||
<div class="max-w-4xl mx-auto px-4 text-center">
|
||||
<h2 class="text-5xl font-bold mb-6">Seu Canivete Suíço Digital</h2>
|
||||
<p class="text-xl mb-8 opacity-90">
|
||||
Mais de 1000 ferramentas úteis, games e produtividade - tudo online, sem instalar nada!
|
||||
</p>
|
||||
<div class="flex justify-center space-x-4">
|
||||
<a href="/signup" class="bg-white text-blue-600 px-8 py-3 rounded-lg font-semibold text-lg hover:bg-gray-100 transition">Começar Grátis</a>
|
||||
<a href="#apps" class="border border-white text-white px-8 py-3 rounded-lg font-semibold text-lg hover:bg-white/10 transition">Explorar Apps</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Categories -->
|
||||
<section id="apps" class="py-16 px-4">
|
||||
<div class="max-w-6xl mx-auto">
|
||||
<h3 class="text-3xl font-bold text-center mb-12 text-gray-800">Categorias</h3>
|
||||
|
||||
<div class="grid md:grid-cols-3 gap-8">
|
||||
<!-- Produtividade -->
|
||||
<div class="bg-white rounded-xl p-8 card-hover">
|
||||
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-4">
|
||||
<svg class="w-8 h-8 text-blue-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
|
||||
</svg>
|
||||
</div>
|
||||
<h4 class="text-xl font-semibold mb-2">Produtividade</h4>
|
||||
<p class="text-gray-600 mb-4">Ferramentas para otimizar seu tempo e trabalho</p>
|
||||
<span class="text-blue-600 font-medium">Ver apps →</span>
|
||||
</div>
|
||||
|
||||
<!-- Utilidades -->
|
||||
<div class="bg-white rounded-xl p-8 card-hover">
|
||||
<div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center mb-4">
|
||||
<svg class="w-8 h-8 text-green-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M11 4a2 2 0 114 0v5a2 2 0 01-2 2H7a2 2 0 00-2-2V6a2 2 0 012-2h2z"></path>
|
||||
</svg>
|
||||
</div>
|
||||
<h4 class="text-xl font-semibold mb-2">Utilidades</h4>
|
||||
<p class="text-gray-600 mb-4">Ferramentas práticas para o dia a dia</p>
|
||||
<span class="text-green-600 font-medium">Ver apps →</span>
|
||||
</div>
|
||||
|
||||
<!-- Games -->
|
||||
<div class="bg-white rounded-xl p-8 card-hover">
|
||||
<div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center mb-4">
|
||||
<svg class="w-8 h-8 text-purple-600" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M14.752 12.795a7.95 7.95 0 001.904-5.452 7.95 7.95 0 00-7.95 7.95A7.95 7.95 0 0012.795 14.752"></path>
|
||||
</svg>
|
||||
</div>
|
||||
<h4 class="text-xl font-semibold mb-2">Games</h4>
|
||||
<p class="text-gray-600 mb-4">Diversão rápida e envolvente</p>
|
||||
<span class="text-purple-600 font-medium">Ver apps →</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Features -->
|
||||
<section class="bg-gray-100 py-16 px-4">
|
||||
<div class="max-w-6xl mx-auto">
|
||||
<h3 class="text-3xl font-bold text-center mb-12 text-gray-800">Por que 1000Apps?</h3>
|
||||
|
||||
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
|
||||
<div class="text-center">
|
||||
<div class="w-16 h-16 bg-blue-600 rounded-full flex items-center justify-center mx-auto mb-4">
|
||||
<span class="text-2xl font-bold text-white">01</span>
|
||||
</div>
|
||||
<h5 class="font-semibold mb-2">Nada para Instalar</h5>
|
||||
<p class="text-sm text-gray-600">Tudo rodando direto no navegador</p>
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<div class="w-16 h-16 bg-green-600 rounded-full flex items-center justify-center mx-auto mb-4">
|
||||
<span class="text-2xl font-bold text-white">02</span>
|
||||
</div>
|
||||
<h5 class="font-semibold mb-2">Sempre Atualizado</h5>
|
||||
<p class="text-sm text-gray-600">Conteúdo fresco todo dia</p>
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<div class="w-16 h-16 bg-purple-600 rounded-full flex items-center justify-center mx-auto mb-4">
|
||||
<span class="text-2xl font-bold text-white">03</span>
|
||||
</div>
|
||||
<h5 class="font-semibold mb-2">Curadoria Inteligente</h5>
|
||||
<p class="text-sm text-gray-600">Só apps úteis e testados</p>
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<div class="w-16 h-16 bg-orange-600 rounded-full flex items-center justify-center mx-auto mb-4">
|
||||
<span class="text-2xl font-bold text-white">04</span>
|
||||
</div>
|
||||
<h5 class="font-semibold mb-2">Grátis para Sempre</h5>
|
||||
<p class="text-sm text-gray-600">Acesso completo sem pagar nada</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- CTA Final -->
|
||||
<section class="py-20 px-4">
|
||||
<div class="max-w-3xl mx-auto text-center">
|
||||
<h3 class="text-4xl font-bold mb-4 text-gray-900">Pronto para começar?</h3>
|
||||
<p class="text-lg text-gray-600 mb-8">
|
||||
Junte-se a milhares de usuários que já economizam tempo com 1000Apps
|
||||
</p>
|
||||
<a href="/signup" class="inline-block bg-blue-600 text-white px-10 py-4 rounded-lg font-semibold text-xl hover:bg-blue-700 transition transform hover:scale-105">
|
||||
Criar Conta Grátis
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer class="bg-gray-900 text-white py-8 px-4">
|
||||
<div class="max-w-6xl mx-auto text-center">
|
||||
<p class="mb-4">© 2026 1000Apps. Todos os direitos reservados.</p>
|
||||
<div class="space-x-6 text-sm">
|
||||
<a href="#" class="hover:text-gray-300">Termos</a>
|
||||
<a href="#" class="hover:text-gray-300">Privacidade</a>
|
||||
<a href="#" class="hover:text-gray-300">Contato</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user