From 23ede47d89348641cb0dc52a17dc27899fcbe2c5 Mon Sep 17 00:00:00 2001 From: Felipe Arentsen Date: Sat, 14 Mar 2026 12:47:46 -0600 Subject: [PATCH] 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) --- README.md | 77 ++++++++++++++++++++++++++++------------------------ package.json | 4 +-- 2 files changed, 44 insertions(+), 37 deletions(-) diff --git a/README.md b/README.md index 87b813a..a37d246 100644 --- a/README.md +++ b/README.md @@ -1,43 +1,50 @@ -# Astro Starter Kit: Minimal +# FIT Labs — fitlabs.dev -```sh -npm create astro@latest -- --template minimal +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 ``` -> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun! +## Deploy -## 🚀 Project Structure +El sitio se despliega en Coolify desde el repo de Gitea. -Inside of your Astro project, you'll see the following folders and files: - -```text -/ -├── public/ -├── src/ -│ └── pages/ -│ └── index.astro -└── package.json +```bash +git push origin master +# Deploy automatico o manual desde Coolify dashboard ``` -Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. +## Estructura -There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. - -Any static assets, like images, can be placed in the `public/` directory. - -## 🧞 Commands - -All commands are run from the root of the project, from a terminal: - -| Command | Action | -| :------------------------ | :----------------------------------------------- | -| `npm install` | Installs dependencies | -| `npm run dev` | Starts local dev server at `localhost:4321` | -| `npm run build` | Build your production site to `./dist/` | -| `npm run preview` | Preview your build locally, before deploying | -| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` | -| `npm run astro -- --help` | Get help using the Astro CLI | - -## 👀 Want to learn more? - -Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat). +``` +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 +``` diff --git a/package.json b/package.json index 9e979c7..14f77d8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "fitlabs-scaffold", + "name": "fitlabs.dev", "type": "module", - "version": "0.0.1", + "version": "1.0.0", "engines": { "node": ">=22.12.0" },