Showing
1 changed file
with
3 additions
and
2 deletions
... | @@ -66,9 +66,10 @@ const StartBox = styled.div` | ... | @@ -66,9 +66,10 @@ const StartBox = styled.div` |
66 | align-items: center; | 66 | align-items: center; |
67 | `; | 67 | `; |
68 | 68 | ||
69 | -const StartButton = styled.button` | 69 | +const StartLink = styled(Link)` |
70 | background-color: #3dc1d3; | 70 | background-color: #3dc1d3; |
71 | color: #f1f2f6; | 71 | color: #f1f2f6; |
72 | + text-align: center; | ||
72 | font-size: 18px; | 73 | font-size: 18px; |
73 | font-weight: 500; | 74 | font-weight: 500; |
74 | width: 150px; | 75 | width: 150px; |
... | @@ -102,7 +103,7 @@ export default () => { | ... | @@ -102,7 +103,7 @@ export default () => { |
102 | </HeaderMenuItem> | 103 | </HeaderMenuItem> |
103 | </HeaderMenuList> | 104 | </HeaderMenuList> |
104 | <StartBox> | 105 | <StartBox> |
105 | - <StartButton>Start</StartButton> | 106 | + <StartLink to="/Auth">Start</StartLink> |
106 | </StartBox> | 107 | </StartBox> |
107 | </HeaderMenuNav> | 108 | </HeaderMenuNav> |
108 | </HeaderBox> | 109 | </HeaderBox> | ... | ... |
-
Please register or login to post a comment