= ({
{(accessStatus && !disable) ? (
-
+ {showConfirmConnection && confirmConnectModal()}} />
) : null}
diff --git a/src/pages/home/index.css b/src/pages/home/index.css
index 431a4529..80c427a4 100644
--- a/src/pages/home/index.css
+++ b/src/pages/home/index.css
@@ -2,4 +2,10 @@
@tailwind components;
@tailwind utilities;
-@layer components {}
\ No newline at end of file
+@layer components {}
+
+@media (max-width: 1199px) {
+ #homeContentWrapper {
+ flex-flow: column;
+ }
+}
\ No newline at end of file
diff --git a/src/pages/home/index.tsx b/src/pages/home/index.tsx
index fbba5dcc..11a55f09 100644
--- a/src/pages/home/index.tsx
+++ b/src/pages/home/index.tsx
@@ -1,6 +1,7 @@
import React from "react";
+import { useNavigate } from "react-router-dom";
-import { Container, Grid, Paper, Box, Typography, CircularProgress } from "@mui/material";
+import { Container, Paper, Box, Typography, CircularProgress, Button } from "@mui/material";
import SuccessIcon from "@mui/icons-material/Check";
import FailedIcon from "@mui/icons-material/Close";
import ProgressIcon from '@mui/icons-material/Schedule';
@@ -44,57 +45,38 @@ const Widget = (props: { title?: string, subtitle?: string, value?: number, colo
);
const Home = () => {
+
+ const navigate = useNavigate();
+
return (
Plutus Testing Tool
-
+
-
-
-
- Ali-Hill/minimal-ptt-examples: 57538a3e1ddba14366b0e718107cef5ce9aabb61
-
-
-
-
-
-
+
+ Testing
+ Test your Dapp using Plutus Testing Tool
+
+
-
-
-
- Ali-Hill/minimal-ptt-examples: 57538a3e1ddba14366b0e718107cef5ce9aabb61
-
-
-
-
+
+ Generate a certificate metadata
+ Generate a CIP-96 compliant certificate for your audits
+
-
-
-
-
- Ali-Hill/minimal-ptt-examples: 57538a3e1ddba14366b0e718107cef5ce9aabb61
-
-
-
-
+
+ Documentation
+ Access the documentation
+
-
+
-
);
};