Proyectos de Subversion LeadersLinked - SPA

Rev

Rev 3156 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
3719 stevensc 1
import Button from '@app/components/UI/buttons/Buttons';
2
import React from 'react';
3
import { Link } from 'react-router-dom';
4
import styled from 'styled-components';
5
 
6
const NavigationList = styled.ul`
7
  width: 100%;
8
  display: flex;
9
  flex-direction: column;
10
  gap: 0.5rem;
11
  a,
12
  button {
13
    width: 100%;
14
  }
15
`;
16
 
17
const Navigation = () => {
18
  return (
19
    <NavigationList>
20
      <li>
21
        <Link to='/signin'>
22
          <Button color='secondary'>Entrar</Button>
23
        </Link>
24
      </li>
25
      <li>
26
        <Link to='/signup'>
27
          <Button color='secondary'>Registrarse</Button>
28
        </Link>
29
      </li>
30
      <li>
31
        <Link to='/forgot-password'>
32
          <Button color='secondary'>Olvide mi clave</Button>
33
        </Link>
34
      </li>
35
    </NavigationList>
36
  );
37
};
38
 
39
export default Navigation;