|
@@ -4,13 +4,13 @@ import Link from '@mui/material/Link';
|
4
|
4
|
|
5
|
5
|
export default function Footer(props) {
|
6
|
6
|
return (
|
7
|
|
- <Typography variant="body2" color="text.secondary" align="center" {...props}>
|
8
|
|
- {'Copyright © '}
|
|
7
|
+ <Typography className="footerinfo" variant="body2" color="text.secondary" align="center" {...props}>
|
|
8
|
+ <a href="#">LICENCIA DE USO</a>
|
|
9
|
+ <a href="#">DERECHOS</a>
|
|
10
|
+ <a href="#">PRIVACIDAD</a>
|
9
|
11
|
<Link color="inherit" href="#">
|
10
|
|
- Propiedad de Grupo DIT
|
11
|
|
- </Link>{' '}
|
12
|
|
- {new Date().getFullYear()}
|
13
|
|
- {'.'}
|
|
12
|
+ Propiedad de Grupo DIT {new Date().getFullYear()}
|
|
13
|
+ </Link>
|
14
|
14
|
</Typography>
|
15
|
15
|
);
|
16
|
16
|
}
|