diff --git a/public/ghost.png b/public/ghost.png new file mode 100644 index 00000000..8cf4548c Binary files /dev/null and b/public/ghost.png differ diff --git a/src-tauri/tauri.linux.conf.json b/src-tauri/tauri.linux.conf.json index 1fca7d5e..ccea237a 100644 --- a/src-tauri/tauri.linux.conf.json +++ b/src-tauri/tauri.linux.conf.json @@ -24,10 +24,10 @@ "width": 400, "height": 500, "decorations": false, - "label": "Lume", "title": "Lume", "center": true, "resizable": false, + "label": "splashscreen", "url": "splashscreen" } ] diff --git a/src-tauri/tauri.macos.conf.json b/src-tauri/tauri.macos.conf.json index 07540e10..9ebe7a04 100644 --- a/src-tauri/tauri.macos.conf.json +++ b/src-tauri/tauri.macos.conf.json @@ -25,12 +25,12 @@ "width": 400, "height": 500, "decorations": true, - "label": "Lume", "title": "Lume", "titleBarStyle": "Overlay", "hiddenTitle": true, "center": true, "resizable": false, + "label": "splashscreen", "url": "splashscreen" } ] diff --git a/src-tauri/tauri.windows.conf.json b/src-tauri/tauri.windows.conf.json index 982cdb15..44754cd9 100644 --- a/src-tauri/tauri.windows.conf.json +++ b/src-tauri/tauri.windows.conf.json @@ -24,10 +24,10 @@ "width": 400, "height": 500, "decorations": false, - "label": "Lume", "title": "Lume", "center": true, "resizable": false, + "label": "splashscreen", "url": "splashscreen" } ] diff --git a/src/app.tsx b/src/app.tsx index 0285b39d..3a319b92 100644 --- a/src/app.tsx +++ b/src/app.tsx @@ -220,6 +220,13 @@ const router = createBrowserRouter([ return { Component: ResetScreen }; }, }, + { + path: 'hard-reset', + async lazy() { + const { HardResetScreen } = await import('@app/auth/hardReset'); + return { Component: HardResetScreen }; + }, + }, ], }, { @@ -256,7 +263,7 @@ export default function App() { +
} diff --git a/src/app/auth/components/user.tsx b/src/app/auth/components/user.tsx index 7fd05bc0..5429382c 100644 --- a/src/app/auth/components/user.tsx +++ b/src/app/auth/components/user.tsx @@ -9,10 +9,10 @@ export function User({ pubkey, fallback }: { pubkey: string; fallback?: string } if (status === 'loading') { return (
-
+
- - + +
); diff --git a/src/app/auth/components/userRelay.tsx b/src/app/auth/components/userRelay.tsx index decb3016..68a61fa0 100644 --- a/src/app/auth/components/userRelay.tsx +++ b/src/app/auth/components/userRelay.tsx @@ -9,10 +9,10 @@ export function UserRelay({ pubkey }: { pubkey: string }) { if (status === 'loading') { return (
-
+
- - + +
); diff --git a/src/app/auth/create/step-1.tsx b/src/app/auth/create/step-1.tsx index fc6868f4..53400b5a 100644 --- a/src/app/auth/create/step-1.tsx +++ b/src/app/auth/create/step-1.tsx @@ -81,7 +81,7 @@ export function CreateStep1Screen() {
@@ -91,12 +91,12 @@ export function CreateStep1Screen() { readOnly type={privkeyInput} value={nsec} - className="relative h-11 w-full rounded-lg bg-white/10 py-1 pl-3.5 pr-11 text-white !outline-none placeholder:text-white/50" + className="relative h-11 w-full rounded-lg bg-white/10 py-1 pl-3.5 pr-11 text-white !outline-none backdrop-blur-xl placeholder:text-white/50" />