Files
Consultoría AS 049d2133f9 Implementación inicial del sistema de automatización de redes sociales
- Estructura completa del proyecto con FastAPI
- Modelos de base de datos (productos, servicios, posts, calendario, interacciones)
- Publishers para X, Threads, Instagram, Facebook
- Generador de contenido con DeepSeek API
- Worker de Celery con tareas programadas
- Dashboard básico con templates HTML
- Docker Compose para despliegue
- Documentación completa

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-28 01:11:44 +00:00

128 lines
2.9 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 1080px;
height: 1080px;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
font-family: 'Segoe UI', Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 60px;
color: #fff;
}
.category {
background: rgba(212, 165, 116, 0.2);
color: #d4a574;
padding: 12px 24px;
border-radius: 30px;
font-size: 18px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 40px;
}
.icon {
font-size: 80px;
margin-bottom: 30px;
}
.title {
font-size: 42px;
font-weight: 700;
text-align: center;
margin-bottom: 30px;
line-height: 1.3;
color: #fff;
}
.content {
font-size: 32px;
text-align: center;
line-height: 1.6;
color: #e0e0e0;
max-width: 900px;
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 40px;
display: flex;
align-items: center;
gap: 20px;
}
.logo {
width: 50px;
height: 50px;
background: #d4a574;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 24px;
color: #1a1a2e;
}
.brand {
font-size: 20px;
color: #888;
}
.brand span {
color: #d4a574;
font-weight: 600;
}
.decoration {
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
}
.decoration-1 {
top: -100px;
right: -100px;
}
.decoration-2 {
bottom: -100px;
left: -100px;
}
</style>
</head>
<body>
<div class="decoration decoration-1"></div>
<div class="decoration decoration-2"></div>
<div class="category">💡 {{ category }}</div>
<h1 class="title">{{ title }}</h1>
<p class="content">{{ content }}</p>
<div class="footer">
<div class="logo">AS</div>
<div class="brand">
<span>{{ business_name }}</span><br>
{{ website }}
</div>
</div>
</body>
</html>