Files
fitlabs.dev/README.md
Felipe Arentsen 23ede47d89 chore: update README and package.json with project info
- Replace scaffold README with project-specific documentation
- Rename package to fitlabs.dev, bump to v1.0.0

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-14 12:47:46 -06:00

51 lines
1.3 KiB
Markdown

# 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
```