diff --git a/src/views/Home/Home.tsx b/src/views/Home/Home.tsx
index 3a80e6c..11c64f4 100644
--- a/src/views/Home/Home.tsx
+++ b/src/views/Home/Home.tsx
@@ -1,13 +1,45 @@
import { useSession, signIn, signOut } from "next-auth/react"
-import { Button, Box } from "@chakra-ui/react";
+import { Button, Box, useBreakpointValue } from "@chakra-ui/react";
import { useGetUserInfo } from "@/views/Home/hooks/hooks";
import NewUserForm from "./components/NewUserForm/NewUserForm";
import withDappProvider from "@/hoc/withDappProvider";
import ExistingUser from "./components/ExistingUser/ExistingUser";
+import {
+ Flex,
+ Heading,
+ Text,
+ Link,
+ SimpleGrid,
+ Stack,
+ Icon,
+ Spacer,VStack,Grid
+} from "@chakra-ui/react";
+import { AtSignIcon, LockIcon, CheckIcon } from "@chakra-ui/icons";
+
+function FeatureCard({ icon: IconComponent, title, description }) {
+ return (
+
+
+
+ {title}
+
+ {description}
+
+ );
+}
const Home = () => {
+ const columnCount = useBreakpointValue({ base: 2, md: 4 }); // Two columns for mobile, four columns for larger screens
+
+
const { data: session } = useSession()
const email = session?.user?.email || "";
@@ -44,21 +76,175 @@ const Home = () => {
)
}
return (
-
- Not signed in
-
+ The SociWallet
+
+ Create a secure crypto wallet in moments with your Google account and a secret PIN. Your PIN, exclusively for seed phrase encryption, isnt stored anywhere. Access your seed phrase with your PIN whenever needed, giving you freedom and peace of mind.
+
+
+
+
+
+
+
+
+
+ {/* Stats Section */}
+
+ {/* Stat Item 1 */}
+
+ 562M
+ of active daily users
+
+
+ {/* Stat Item 2 */}
+
+ 1234
+ transactions per second
+
+
+ {/* Stat Item 3 */}
+
+ 11236
+ validator nodes
+
+
+ {/* Stat Item 4 */}
+
+ 2M
+ transactions per day
+
+
+
+
+
+ {/* Key Features Section */}
+
+
+ Key features that set us apart
+
+
+ Nexowallet is more than just a wallet - its a comprehensive platform with features that are tailored to the needs of cryptocurrency enthusiasts
+
+
+
+
+
+
+ {/* ... other feature cards */}
+
+
+
+
- )
-};
-export default Home;
+
+ )
+
+
+
+
+
+};
+export default Home;
\ No newline at end of file