-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
3,699 additions
and
6,934 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
public-hoist-pattern[]=*@nextui-org/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,45 @@ | ||
<h1 align="center"> IEEE-ESTl Student Web Hub </h1> | ||
<p align="center"> | ||
<img width="400px" src="https://github.com/IEEE-ESTl/IEEE-ESTl-Student-Web-Hub/blob/main/public/SB-Logo.png" alt="IEEE - ESTl Student Branch"/> | ||
</p> | ||
|
||
[![Deploy to GitHub Pages](https://github.com/IEEE-ESTl/IEEE-ESTl-Student-Web-Hub/actions/workflows/deploy.yml/badge.svg?branch=main)](https://github.com/IEEE-ESTl/IEEE-ESTl-Student-Web-Hub/actions/workflows/deploy.yml) | ||
|
||
### La Rama Estudiantil IEEE-ESTl es una comunidad de estudiantes apasionados por la programación, la innovación y el conocimiento de nuevas tecnologías. Como miembros de la rama, nos vimos en la tarea de crear la página web “IEEE-ESTL Student Web Hub”. | ||
|
||
|
||
<h2 align="center">Funcionalidades</h2> | ||
|
||
> [!TIP] | ||
> Como parte importante de sus funcionalidades fue crearlo como código abierto para que otras comunidades puedan hacer uso de este repositorio y moldear la página web de su rama estudiantil. Si se encuentra interesado en esto lea el partado “Instalacion”. | ||
<li>Dar a conocer los beneficios de pertenecer a la rama</li> | ||
<li>Mostrar los eventos que se realizan dentro de la rama, como hackatones, talleres, cursos, conferencias y más.</li> | ||
<li>Promocionar los próximos eventos a realizar</li> | ||
<li>Atender dudas con respecto a la IEEE y a la rama estudiantil</li> | ||
|
||
<h2 align="center">Estado</h2> | ||
|
||
> [!IMPORTANT] | ||
> Actualmente el proyecto se encuentra en railway (producción) recibiendo constantes actualizaciones de optimización, corrección de bugs y actualización del contenido cada semana. | ||
<p>Actualizaciones recientes: | ||
</p> | ||
<li>Apartado de miembros agregado</li> | ||
|
||
<h2 align="center">Herramientas utilizadas </h2> | ||
<li>Astro</li> | ||
<li>React</li> | ||
<li>CSS</li> | ||
<li>JavaScript</li> | ||
<li>Tailwind</li> | ||
|
||
<h2 align="center">Instalación</h2> | ||
<p>Para hacer uso de este proyecto de manera local es necesario descargar el código desde el apartado “code” o si lo desea puede ejecutar los siguientes comandos en la terminal de visual studio code.</p> | ||
|
||
- `git clone https://github.com/IEEE-ESTl/IEEE-ESTl-Student-Web-Hub.git` para clonar el proyecto | ||
|
||
- `pnpm install` para instalar todas las dependencias del proyecto | ||
- `pnpm run dev` para abrir una previsualización del proyecto de forma local | ||
- `pnpm run build` y `pnpm run preview` hacienda énfasis en estas dos últimas líneas de comandos son muy importantes a la hora de llevar a producción el proyecto, ya que el primero construye la página web y el segundo te muestra una previsualización de cómo se verá el proyecto una vez lanzado a producción | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
import { defineConfig } from "astro/config"; | ||
|
||
import react from "@astrojs/react"; | ||
|
||
import tailwind from "@astrojs/tailwind"; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
integrations: [react()], | ||
integrations: [react(), tailwind()], | ||
site: 'https://IEEE-ESTl.github.io', | ||
base: '/IEEE-ESTl-Student-Web-Hub', | ||
base: '/IEEE-ESTl-Student-Web-Hub' | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.