import { LogicalSize, getCurrent } from '@tauri-apps/api/window'; import { useEffect } from 'react'; import { Link } from 'react-router-dom'; import { Frame } from '@shared/frame'; import { ArrowRightCircleIcon } from '@shared/icons/arrowRightCircle'; export function WelcomeScreen() { const appWindow = getCurrent(); async function setWindow() { await appWindow.setSize(new LogicalSize(400, 500)); await appWindow.setResizable(false); await appWindow.center(); } async function resetWindow() { await appWindow.setSize(new LogicalSize(1080, 800)); await appWindow.setResizable(false); await appWindow.center(); } useEffect(() => { setWindow(); return () => { resetWindow(); }; }, []); return (

Welcome to Lume

Let's get you up and connecting with all peoples around the world on Nostr

Login with private key Create new key
lume
); }