diff --git a/src/app/create-wallet/page.tsx b/src/app/create-wallet/page.tsx
new file mode 100644
index 0000000..869847c
--- /dev/null
+++ b/src/app/create-wallet/page.tsx
@@ -0,0 +1,25 @@
+export default function CreateWallet() {
+ return (
+ <>
+
+
+
+
+
+ Once you generate the seed phrase, save it securely and once you
+ have saved it, you can preoceed to wallet.
+
+
+
+
+
+
+
+
+
+
+ >
+ );
+}
diff --git a/src/app/globals.css b/src/app/globals.css
index 13d40b8..a0d388b 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -3,14 +3,14 @@
@tailwind utilities;
:root {
- --background: #ffffff;
+ /* --background: #ffffff; */
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
- --background: #0a0a0a;
- --foreground: #ededed;
+ /* --background: #0a0a0a; */
+ /* --foreground: #ededed; */
}
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 4988bcd..561a242 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,7 +1,25 @@
-export default function Home() {
+import Link from "next/link";
+
+function Home() {
return (
-
-
Hello world
-
+ <>
+
+ {/*
*/}
+
+
Wallet
+
Welcome to your Web3 Wallet made just for you.
+
+
+ Create a Wallet
+
+
+ Sign in with seed phrase
+
+
+
+
+ >
);
}
+
+export default Home;