Skip to content

Commit

Permalink
final command to restart nginx to the deploy workflow
Browse files Browse the repository at this point in the history
Add new C&C points video
  • Loading branch information
S-e-b-a-s committed Aug 6, 2024
1 parent 9ae4830 commit 761c8dc
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ jobs:
run: |
rm -rf /var/www/INSIGHTS/dist/*
cp -r ./dist/* /var/www/INSIGHTS/dist
sudo systemctl restart nginx
37 changes: 30 additions & 7 deletions src/components/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { Typography, Box, Container, useMediaQuery, Card, List, ListItem, ListIt
// Media
import realBenefit2 from "../../images/benefits/benefit-1.png";
import video from "../../videos/futbol.mp4";
import videoPoints from "../../videos/points.mp4";
import cake from "../../images/birthdays/cake.png";
import ceroDiscrimination from "../../images/home-carousel/cero-discrimination.png";
import AvatarImage from "../../images/home-carousel/avatar.jpg";
Expand Down Expand Up @@ -176,21 +177,21 @@ const Home = () => {
variant="h4"
sx={{ display: "flex", width: "100%", justifyContent: "center", pt: "1em", fontFamily: "Poppins" }}
>
¡C&C Apoyando el deporte!
¡Tenemos una super noticia para compartir!
</Typography>
<Typography variant="body1" sx={{ textAlign: "center" }}>
En C&C respaldamos con entusiasmo el deporte y en particular el fútbol femenino. A través de nuestro patrocinio, hemos contribuido al éxito de nuestro
equipo Future Soccer, que recientemente se destacó al ganar el torneo de la copa Nottingham. Este logro no solo refuerza nuestro compromiso con la
comunidad, sino que también subraya nuestro apoyo a la equidad de género en el deporte. Estamos emocionados de seguir respaldando y empoderando a
nuestras talentosas atletas mientras continúan alcanzando nuevas metas.
<br /> ¡En C&C Services creemos en el poder transformador del deporte para construir un futuro más sólido y unido!
Hemos lanzado un nuevo plan de reconocimiento "puntos de excelencia C&C", diseñado para motivarlos y recompensar su esfuerzo y dedicación.
</Typography>
<Typography color="primary" id="section1" variant="h6" sx={{ textAlign: "center" }}>
Conoce mas en el siguiente video
</Typography>
<Box display={{ display: "flex", justifyContent: "center", alignItems: "center" }}>
<video style={{ borderRadius: "8px", width: "100%" }} controls>
<source src={video} type="video/mp4" />
<source src={videoPoints} type="video/mp4" />
</video>
</Box>
</Container>

<Box
sx={{
display: "flex",
Expand Down Expand Up @@ -284,6 +285,28 @@ const Home = () => {
<CarouselComponent items={benefits} height={"960px"} width={"540px"} />
</Box>
</Box>
<Container sx={{ display: "flex", flexDirection: "column", gap: "2rem", mt: "2rem" }}>
<Typography
color="primary"
id="section1"
variant="h4"
sx={{ display: "flex", width: "100%", justifyContent: "center", pt: "1em", fontFamily: "Poppins" }}
>
¡C&C Apoyando el deporte!
</Typography>
<Typography variant="body1" sx={{ textAlign: "center" }}>
En C&C respaldamos con entusiasmo el deporte y en particular el fútbol femenino. A través de nuestro patrocinio, hemos contribuido al éxito de nuestro
equipo Future Soccer, que recientemente se destacó al ganar el torneo de la copa Nottingham. Este logro no solo refuerza nuestro compromiso con la
comunidad, sino que también subraya nuestro apoyo a la equidad de género en el deporte. Estamos emocionados de seguir respaldando y empoderando a
nuestras talentosas atletas mientras continúan alcanzando nuevas metas.
<br /> ¡En C&C Services creemos en el poder transformador del deporte para construir un futuro más sólido y unido!
</Typography>
<Box display={{ display: "flex", justifyContent: "center", alignItems: "center" }}>
<video style={{ borderRadius: "8px", width: "100%" }} controls>
<source src={video} type="video/mp4" />
</video>
</Box>
</Container>
<SnackbarAlert message={message} severity={severity} openSnack={openSnack} closeSnack={handleCloseSnack} />
</>
);
Expand Down

0 comments on commit 761c8dc

Please sign in to comment.