Skip to content

Commit 8b4ca16

Browse files
committed
Actualiza el nombre del paquete a "@eventhub/showcase", incrementa la versión a "1.0.0" y añade un script de limpieza en package.json. Mejora el README.md con información sobre el proyecto, características, estructura y tecnologías utilizadas.
1 parent 95036b0 commit 8b4ca16

File tree

2 files changed

+65
-36
lines changed

2 files changed

+65
-36
lines changed

README.md

Lines changed: 61 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,76 @@
1-
# Astro Starter Kit: Basics
1+
# EventHub Showcase
22

3-
```sh
4-
npm create astro@latest -- --template basics
5-
```
3+
Este repositorio contiene el sitio web demostrativo de EventHub, una plataforma para la gestión de eventos empresariales y networking profesional.
4+
5+
## 🌐 Demo en vivo
66

7-
[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
8-
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)
9-
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/basics/devcontainer.json)
7+
**Ver el sitio web desplegado:** [https://tathatahy.github.io/eventhub-showcase/](https://tathatahy.github.io/eventhub-showcase/)
108

11-
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
9+
El sitio se actualiza automáticamente con cada push a la rama main gracias a GitHub Actions.
1210

13-
![just-the-basics](https://github.com/withastro/astro/assets/2244813/a0a5533c-a856-4198-8470-2d67b1d7c554)
11+
## 🚀 Características
1412

15-
## 🚀 Project Structure
13+
- **Diseño Moderno y Responsivo**: Adaptado a todos los dispositivos
14+
- **Landing Page Informativa**: Presenta la plataforma EventHub
15+
- **Páginas Demostrativas**: Muestra las funcionalidades y casos de uso
16+
- **Formulario de Contacto**: Permite a visitantes solicitar información
17+
- **Despliegue Automático**: Configurado con GitHub Actions para despliegue en GitHub Pages
1618

17-
Inside of your Astro project, you'll see the following folders and files:
19+
## 📁 Estructura del Proyecto
1820

19-
```text
20-
/
21-
├── public/
22-
│ └── favicon.svg
21+
```
22+
eventhub-showcase/
23+
├── public/ # Archivos estáticos (imágenes, favicon)
2324
├── src/
24-
│ ├── layouts/
25-
│ │ └── Layout.astro
26-
│ └── pages/
27-
│ └── index.astro
28-
└── package.json
25+
│ ├── assets/ # Recursos gráficos
26+
│ ├── layouts/ # Plantilla principal (Layout.astro)
27+
│ ├── pages/ # Páginas (index, funcionalidades, etc.)
28+
│ └── components/ # Componentes reutilizables (vacío)
29+
└── astro.config.mjs # Configuración de Astro y despliegue
30+
```
31+
32+
## 💻 Tecnologías
33+
34+
- **Astro**: Framework para sitios web estáticos
35+
- **TailwindCSS**: Framework CSS para diseño responsivo
36+
- **GitHub Pages**: Plataforma de despliegue
37+
38+
## 🔧 Instalación
39+
40+
```bash
41+
# Clonar este repositorio
42+
git clone https://github.com/TathataHY/eventhub-showcase.git
43+
44+
# Entrar al directorio
45+
cd eventhub-showcase
46+
47+
# Instalar dependencias
48+
npm install
49+
```
50+
51+
## 🚀 Desarrollo
52+
53+
```bash
54+
# Iniciar servidor de desarrollo
55+
npm run dev
56+
57+
# Compilar para producción
58+
npm run build
59+
60+
# Previsualizar versión de producción
61+
npm run preview
2962
```
3063

31-
To learn more about the folder structure of an Astro project, refer to [our guide on project structure](https://docs.astro.build/en/basics/project-structure/).
64+
## 🔄 Relación con EventHub
3265

33-
## 🧞 Commands
66+
Este showcase es la landing page promocional para el ecosistema EventHub, que incluye:
3467

35-
All commands are run from the root of the project, from a terminal:
68+
- Aplicación móvil
69+
- API backend
70+
- Sistema completo de gestión de eventos
3671

37-
| Command | Action |
38-
| :------------------------ | :----------------------------------------------- |
39-
| `npm install` | Installs dependencies |
40-
| `npm run dev` | Starts local dev server at `localhost:4321` |
41-
| `npm run build` | Build your production site to `./dist/` |
42-
| `npm run preview` | Preview your build locally, before deploying |
43-
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
44-
| `npm run astro -- --help` | Get help using the Astro CLI |
72+
## 📝 Personalización
4573

46-
## 👀 Want to learn more?
74+
Para añadir nuevas páginas, crear archivos `.astro` en `src/pages/` usando el componente Layout como base.
4775

48-
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
76+
Para modificar el diseño global, editar `src/layouts/Layout.astro`.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
2-
"name": "showcase",
2+
"name": "@eventhub/showcase",
33
"type": "module",
4-
"version": "0.0.1",
4+
"version": "1.0.0",
55
"scripts": {
66
"dev": "astro dev",
77
"start": "astro dev",
88
"build": "astro build",
99
"preview": "astro preview",
10-
"astro": "astro"
10+
"astro": "astro",
11+
"clean": "powershell -Command \"Get-ChildItem -Path . -Recurse -Include *.js -Exclude node_modules,dist,*.config.js,*.config.mjs,node_modules,astro.config.mjs,tailwind.config.mjs | Remove-Item\""
1112
},
1213
"dependencies": {
1314
"astro": "^5.5.3"

0 commit comments

Comments
 (0)