diff --git a/webapp/src/App.js b/webapp/src/App.js
index d03babd..0de25d2 100644
--- a/webapp/src/App.js
+++ b/webapp/src/App.js
@@ -52,7 +52,7 @@ import Login from './components/Login';
import CssBaseline from '@mui/material/CssBaseline';
import Container from '@mui/material/Container';
import Typography from '@mui/material/Typography';
-
+import Footer from './components/Footer';
function App() {
return (
@@ -64,6 +64,8 @@ function App() {
{/* Aquí se muestra el componente GenerateQuestion */}
+
+
);
}
diff --git a/webapp/src/components/Footer.js b/webapp/src/components/Footer.js
new file mode 100644
index 0000000..7143c16
--- /dev/null
+++ b/webapp/src/components/Footer.js
@@ -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 = () => (
+
+);
+
+export default Footer;
diff --git a/webapp/src/index.js b/webapp/src/index.js
index ea37584..efa143b 100644
--- a/webapp/src/index.js
+++ b/webapp/src/index.js
@@ -12,7 +12,7 @@ root.render(
-
+
);
diff --git a/webapp/src/styles/Footer.css b/webapp/src/styles/Footer.css
new file mode 100644
index 0000000..8c42939
--- /dev/null
+++ b/webapp/src/styles/Footer.css
@@ -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 */
+ }
+