feat: add promo site and fix internal links
Some checks are pending
Deploy Código 0 / deploy (push) Waiting to run
Some checks are pending
Deploy Código 0 / deploy (push) Waiting to run
This commit is contained in:
parent
a72c5f1f03
commit
77c0b01769
|
|
@ -44,6 +44,18 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- proxy
|
- proxy
|
||||||
|
|
||||||
|
# Promo Site - Puerto 9113
|
||||||
|
codigo0-promo:
|
||||||
|
build:
|
||||||
|
context: ./promo-site
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
container_name: codigo0-promo
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- "9113:80"
|
||||||
|
networks:
|
||||||
|
- proxy
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
proxy:
|
proxy:
|
||||||
external: true
|
external: true
|
||||||
|
|
|
||||||
4
promo-site/Dockerfile
Normal file
4
promo-site/Dockerfile
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
FROM nginx:alpine
|
||||||
|
COPY . /usr/share/nginx/html/
|
||||||
|
EXPOSE 80
|
||||||
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
|
|
@ -63,7 +63,7 @@
|
||||||
}
|
}
|
||||||
#showcase {
|
#showcase {
|
||||||
min-height: 400px;
|
min-height: 400px;
|
||||||
background: url('../assets/showcase.jpg') no-repeat 0 -400px;
|
background: #0056b3;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
@ -172,7 +172,7 @@
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Guía de Protocolos de Emergencia para TES</h1>
|
<h1>Guía de Protocolos de Emergencia para TES</h1>
|
||||||
<p>Acceso rápido a protocolos críticos, guías de refuerzo y herramientas clínicas para Técnicos de Emergencias Sanitarias</p>
|
<p>Acceso rápido a protocolos críticos, guías de refuerzo y herramientas clínicas para Técnicos de Emergencias Sanitarias</p>
|
||||||
<a href="http://localhost:5173" class="cta-button">Visitar la Aplicación</a>
|
<a href="http://207.180.226.141:9112" class="cta-button">Visitar la Aplicación</a>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue