{Array.apply(null, Array(numPages))
diff --git a/src/pages/LandingPage.tsx b/src/pages/LandingPage.tsx
index 9fbfd7a..45109de 100644
--- a/src/pages/LandingPage.tsx
+++ b/src/pages/LandingPage.tsx
@@ -1,9 +1,10 @@
-import React, { useState } from 'react';
-import { useNavigate } from 'react-router-dom';
+import React, { useState } from "react";
+import { useNavigate } from "react-router-dom";
-import { Button, Box, Typography } from '@mui/material';
+import { Button, Box } from "@mui/material";
-import TermsAndConditionsBox from '../components/TermsAndConditionsBox';
+import TermsAndConditionsBox from "../components/TermsAndConditionsBox";
+import { Container } from "../components/Container";
const LandingPage = () => {
const navigate = useNavigate();
@@ -11,43 +12,37 @@ const LandingPage = () => {
const [isDisabled, setIsDisabled] = useState(true);
const handleAccept = () => {
- navigate('/verify-email');
+ navigate("/verify-email");
};
return (
- <>
-
+ {
+ setIsDisabled(false);
}}
- padding={5}
- >
-
- Welcome to the LORO Testnet Onboarding App. The detailed instructions for completing this first step are found in the{' '}
- LORO testnet repo.
- Once your onboarding transaction has been submitted, await the completion of stage0. The genesis.json file and peer nodes will then be
- published in the aforementioned repository for validators to begin stage1. Once enough validators are online and the Laconic chain is running,
- those same validators can complete their service provider setup. Once service providers are live, app publishers can start deploying webapps to individual service providers.
-
-
- {setIsDisabled(false);}} />
-
+ />
+
-
- >
+
);
};