import { KeyIcon, RemoteIcon } from "@lume/icons"; import { Link, createFileRoute } from "@tanstack/react-router"; import { useTranslation } from "react-i18next"; export const Route = createFileRoute("/landing/")({ component: Screen, }); function Screen() { const { t } = useTranslation(); return (
lume

{t("welcome.title")}

{t("welcome.signup")}
{t("login.or")}
Nostr Connect
Private Key
); }