diff --git a/frontend/src/basic/RobotPage/Onboarding.tsx b/frontend/src/basic/RobotPage/Onboarding.tsx
index ac0b4dd9..db2e9923 100644
--- a/frontend/src/basic/RobotPage/Onboarding.tsx
+++ b/frontend/src/basic/RobotPage/Onboarding.tsx
@@ -8,6 +8,7 @@ import {
Collapse,
Grid,
LinearProgress,
+ Link,
Typography,
} from '@mui/material';
import { Page } from '../NavBar';
@@ -18,6 +19,7 @@ import TokenInput from './TokenInput';
import { genBase62Token } from '../../utils';
interface OnboardingProps {
+ setView: (state: 'welcome' | 'onboarding' | 'recovery' | 'profile') => void;
robot: Robot;
setRobot: (state: Robot) => void;
inputToken: string;
@@ -29,6 +31,7 @@ interface OnboardingProps {
}
const Onboarding = ({
+ setView,
robot,
inputToken,
setInputToken,
@@ -268,14 +271,14 @@ const Onboarding = ({
{`${t('If you need help on your RoboSats journey, join our public support')} `}
-
+
{t('Telegram group')}
-
+
-
+
diff --git a/frontend/src/basic/RobotPage/Welcome.tsx b/frontend/src/basic/RobotPage/Welcome.tsx
index e69de29b..a123008e 100644
--- a/frontend/src/basic/RobotPage/Welcome.tsx
+++ b/frontend/src/basic/RobotPage/Welcome.tsx
@@ -0,0 +1,85 @@
+import React, { useState } from 'react';
+import { useTranslation } from 'react-i18next';
+import { Box, Button, Grid, Typography, useTheme } from '@mui/material';
+import { RoboSatsNoTextIcon, RoboSatsTextIcon } from '../../components/Icons';
+import { FastForward, RocketLaunch } from '@mui/icons-material';
+import SmartToy from '@mui/icons-material/SmartToy';
+
+interface WelcomeProps {
+ setView: (state: 'welcome' | 'onboarding' | 'recovery' | 'profile') => void;
+ width: number;
+}
+
+const Welcome = ({ setView, width }: WelcomeProps): JSX.Element => {
+ const { t } = useTranslation();
+ const theme = useTheme();
+
+ return (
+
+
+
+ {t('Simple and Private LN P2P Exchange')}
+
+
+
+
+
+
+
+ {t('Create a new robot and learn to use RoboSats')}
+
+
+
+
+
+
+
+
+ {t('Recover an existing robot using your token')}
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default Welcome;
diff --git a/frontend/src/basic/RobotPage/index.tsx b/frontend/src/basic/RobotPage/index.tsx
index 5c1166be..d615877d 100644
--- a/frontend/src/basic/RobotPage/index.tsx
+++ b/frontend/src/basic/RobotPage/index.tsx
@@ -1,15 +1,6 @@
import React, { useEffect, useState } from 'react';
import { useTranslation } from 'react-i18next';
-import {
- Button,
- Paper,
- Grid,
- IconButton,
- TextField,
- Tooltip,
- Typography,
- useTheme,
-} from '@mui/material';
+import { Paper, Grid, useTheme } from '@mui/material';
import { useParams } from 'react-router-dom';
import { Page } from '../NavBar';
@@ -19,9 +10,8 @@ import { systemClient } from '../../services/System';
import { apiClient } from '../../services/api';
import { genKey } from '../../pgp';
import { sha256 } from 'js-sha256';
-import { Casino, Download, ContentCopy, SmartToy, Bolt } from '@mui/icons-material';
-import RobotAvatar from '../../components/RobotAvatar';
import Onboarding from './Onboarding';
+import Welcome from './Welcome';
interface RobotPageProps {
setPage: (state: Page) => void;
@@ -46,6 +36,7 @@ const RobotPage = ({
const params = useParams();
const theme = useTheme();
const refCode = params.refCode;
+ const width = Math.min(windowSize.width * 0.8, 30);
const maxHeight = windowSize.height * 0.85 - 3;
const [robotFound, setRobotFound] = useState(false);
@@ -151,33 +142,31 @@ const RobotPage = ({
return (
- {/* // Welcome to RoboSats
- // Easy and private LN exchange
-
- // I am a newbie
- // Skip (fast robot gen)
- // Recover existing token */}
-
-
+ {view === 'welcome' ? : null}
+
+ {view === 'onboarding' ? (
+
+ ) : null}
diff --git a/frontend/src/components/Icons/RoboSatsText.tsx b/frontend/src/components/Icons/RoboSatsText.tsx
index 41256a99..6e9a686f 100644
--- a/frontend/src/components/Icons/RoboSatsText.tsx
+++ b/frontend/src/components/Icons/RoboSatsText.tsx
@@ -3,7 +3,7 @@ import { SvgIcon } from '@mui/material';
export default function RoboSatsTextIcon(props) {
return (
-
+