# FIT Labs — fitlabs.dev Landing page de FIT Labs, la incubadora de innovacion de FactorIT. ## Stack - **Astro 6** — Static site generator - **Tailwind CSS 4** — Styling - **Docker + nginx** — Deployment - **Coolify** — Hosting ## Desarrollo ```bash npm install npm run dev # http://localhost:4321 npm run build # Output en ./dist/ npm run preview # Preview del build ``` ## Deploy El sitio se despliega en Coolify desde el repo de Gitea. ```bash git push origin master # Deploy automatico o manual desde Coolify dashboard ``` ## Estructura ``` src/ layouts/Layout.astro # Base HTML, SEO, fonts components/ Navbar.astro # Navbar sticky con menu mobile Hero.astro # Hero con gradient mesh animado About.astro # Seccion "Que es FIT Labs" Capabilities.astro # 5 capacidades de IA Differentiator.astro # Diferenciador con valores Contact.astro # CTA con mailto Footer.astro # Footer con links pages/index.astro # Pagina principal styles/global.css # Tailwind + animaciones custom public/ LogoFIT1.png # Logo FIT Labs favicon.svg # Favicon nginx/nginx.conf # Config nginx para produccion Dockerfile # Multi-stage build ```