diff --git a/src/pages/landing/LandingPage.tsx b/src/pages/landing/LandingPage.tsx index 658bf2c..2fff12e 100644 --- a/src/pages/landing/LandingPage.tsx +++ b/src/pages/landing/LandingPage.tsx @@ -1,7 +1,7 @@ import { Box, Button, Typography, useTheme } from '@mui/material' import { useEffect } from 'react' import { useSelector } from 'react-redux' -import { useLocation, useNavigate } from 'react-router-dom' +import { Link, useLocation, useNavigate } from 'react-router-dom' import { appPublicRoutes } from '../../routes' import { State } from '../../store/rootReducer' import { saveVisitedLink } from '../../utils' @@ -25,85 +25,63 @@ export const LandingPage = () => { } return ( - <> -
- + + - + + SIGit is an open-source and self-hostable solution for secure document + signing and verification. Code is MIT licenced and available at{' '} + - - Secure Document Signing - - - SIGit is an open-source and self-hostable solution for secure - document signing and verification. Code is MIT licenced and - available at{' '} - - https://git.sigit.io/sig/it - - . -
-
- SIGit lets you Create, Sign and Verify from any device with a - browser. -
-
- Unlike other solutions, SIGit is totally private - files are - encrypted locally, and can only be exported by named recipients. -
-
-
+ https://git.sigit.io/sig/it + + . +
+
+ SIGit lets you Create, Sign and Verify from any device with a browser. +
+
+ Unlike other solutions, SIGit is totally private - files are encrypted + locally, and can only be exported by named recipients. +
+
+ Anyone can VERIFY the + exported document. + +
- {!authState?.loggedIn && ( -
- -
- )} -
- + {!authState?.loggedIn && ( +
+ +
+ )} + ) }