generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 0
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
david
committed
Feb 12, 2024
1 parent
5c08df7
commit 36e42cd
Showing
4 changed files
with
47 additions
and
2 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
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,17 @@ | ||
import React from 'react'; | ||
import '../styles/Footer.css'; // Asegúrate de importar tu archivo de estilos si es necesario | ||
|
||
const Footer = () => ( | ||
<footer className="footer"> | ||
<p>Trabajo de Arquitectura del Software</p> | ||
<p> | ||
<a href="https://github.com/Arquisoft/wiq_es04c" target="_blank" rel="noopener noreferrer"> | ||
Github del Proyecto | ||
</a> | ||
</p> | ||
<p> | ||
<a href="https://ingenieriainformatica.uniovi.es" target="_blank"rel="noopener noreferrer">Escuela de Ingeniería Informática</a></p> | ||
</footer> | ||
); | ||
|
||
export default Footer; |
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ root.render( | |
<React.StrictMode> | ||
<Navbar></Navbar> | ||
|
||
<App /> | ||
<App /> | ||
|
||
</React.StrictMode> | ||
); | ||
|
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,26 @@ | ||
/* Estilo para el pie de página */ | ||
/* Estilos del pie de página */ | ||
.footer { | ||
position: fixed; | ||
bottom: 0; | ||
width: 100%; | ||
left:0%; | ||
background-color: #001f3f; | ||
color: #ffffff; | ||
padding: 10px; | ||
text-align: center; | ||
display: flex; | ||
justify-content: space-around; /* Distribuye los elementos horizontalmente */ | ||
align-items: center; | ||
} | ||
|
||
.footer a { | ||
color: #ffffff; /* Enlaces en texto blanco */ | ||
text-decoration: none; | ||
|
||
} | ||
|
||
.footer a:hover { | ||
text-decoration: underline; /* Subraya enlaces al pasar el ratón */ | ||
} | ||
|