Skip to content

Commit

Permalink
Merge pull request #20 from IEEE-ESTl/proximosCambios
Browse files Browse the repository at this point in the history
Update meta tags, README, and convert mosaic images to .webp
  • Loading branch information
ErickDevv committed May 7, 2024
2 parents 27429cc + a823637 commit 53c3b66
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<h1 align="center"> IEEE-ESTl Student Web Hub </h1>
<p align="center">
<img width="400px" src="https://github.com/IEEE-ESTl/blob/main/public/SB-Logo.png" alt="IEEE - ESTl Student Branch"/>
<img width="400px" src="public/SB-Logo.png" alt="IEEE - ESTl Student Branch"/>
</p>

[![Deploy to GitHub Pages](https://github.com/IEEE-ESTl/actions/workflows/deploy.yml/badge.svg?branch=main)](https://github.com/IEEE-ESTl/actions/workflows/deploy.yml)
<h1 align="center"> IEEE-ESTl Student Web Hub </h1>


### 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”.

Expand Down
Binary file removed public/Inicio/1.png
Binary file not shown.
Binary file removed public/Inicio/2.png
Binary file not shown.
Binary file removed public/Inicio/3.jpg
Binary file not shown.
Binary file added public/Inicio/mosaic/1.webp
Binary file not shown.
Binary file added public/Inicio/mosaic/2.webp
Binary file not shown.
Binary file added public/Inicio/mosaic/3.webp
Binary file not shown.
6 changes: 3 additions & 3 deletions src/components/Inicio.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import "./cssInicio/fondo.css";
import "./cssInicio/navInicio.css";
import "./cssInicio/variables.css";
import imageMosaic from "/public/Inicio/1.png";
import imageMosaic2 from "/public/Inicio/2.png";
import imageMosaic3 from "/public/Inicio/3.jpg";
import imageMosaic from "/public/Inicio/mosaic/1.webp";
import imageMosaic2 from "/public/Inicio/mosaic/2.webp";
import imageMosaic3 from "/public/Inicio/mosaic/3.webp";
import config from "../../config.json";
Expand Down
15 changes: 13 additions & 2 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
import logo from "/public/SB-Logo.png";
import config from "../../config.json";
import "@fontsource/open-sauce-sans/400.css";
import "@fontsource/open-sauce-sans/800.css";
import Header from "@components/Header.astro";
Expand All @@ -24,9 +23,21 @@ const { title, description } = Astro.props;
basic: {
title: title,
type: "website",
image: logo.src,
image: "https://ieee-estl.com/SB-Logo.png",
},
}}
extend={{
meta: [
{
name: "twitter:image",
content: "https://ieee-estl.com/SB-Logo.png",
},
{
name: "twitter:title",
content: title,
},
],
}}
/>
</head>
<body>
Expand Down

0 comments on commit 53c3b66

Please sign in to comment.