From 0b769d75f07df29978baf3deed1915b3780a9c1a Mon Sep 17 00:00:00 2001 From: Solomon Emmanuel Date: Fri, 13 Dec 2024 17:00:53 +0100 Subject: [PATCH] fix: modal content and error messages --- app/client/src/components/Connector.tsx | 42 +++++++++++++++---- app/client/src/components/Modal/Modal.tsx | 4 +- .../src/components/WalletConnectModal.tsx | 4 +- 3 files changed, 39 insertions(+), 11 deletions(-) diff --git a/app/client/src/components/Connector.tsx b/app/client/src/components/Connector.tsx index d0a54cba..c15db06d 100644 --- a/app/client/src/components/Connector.tsx +++ b/app/client/src/components/Connector.tsx @@ -6,6 +6,7 @@ import { WalletConnectorModal } from "@/components/WalletConnectModal" import type { WalletConnectorProps } from "@/types/interfaces"; +import { Check } from "lucide-react"; export default function WalletConnector({ @@ -25,13 +26,40 @@ export default function WalletConnector({ return (
{status === "disconnected" && ( - +
+
+

+ A Secure Platform for Land Registration, Inspection, and Validation on Starknet +

+
    +
  • + + + Effortless land registration with unique property IDs. + +
  • +
  • + + + Streamlined land inspection and verification for trusted records. + +
  • +
  • + + + Immutable, blockchain security for ownership and transactions. + +
  • +
+ +
+
+ )} {status === "connected" && ( diff --git a/app/client/src/components/Modal/Modal.tsx b/app/client/src/components/Modal/Modal.tsx index 177ce599..498b2f70 100644 --- a/app/client/src/components/Modal/Modal.tsx +++ b/app/client/src/components/Modal/Modal.tsx @@ -18,10 +18,10 @@ const Modal: React.FC = ({ isOpen, onClose, children }) => { return (
-
+
{/* Close Button */}