diff --git a/pages/auth-redirect.tsx b/pages/auth-redirect.tsx index 2ab85315..c058e50b 100644 --- a/pages/auth-redirect.tsx +++ b/pages/auth-redirect.tsx @@ -8,7 +8,7 @@ const AuthRedirect: React.FC = () => { const useAuthCode = async (code: string) => { await axios.post('/api/auth/login', { code }); - router.push('/'); + router.push('/onboarding'); }; React.useEffect(() => { diff --git a/pages/onboarding/index.tsx b/pages/onboarding/index.tsx new file mode 100644 index 00000000..0efa831b --- /dev/null +++ b/pages/onboarding/index.tsx @@ -0,0 +1,22 @@ +import { Box, Button, Container, Typography } from '@mui/material'; +import { NextPage } from 'next'; +import Link from 'next/link'; + +const Onboarding: NextPage = () => { + return ( + + + Onboarding + + + + + + + + ); +}; + +export default Onboarding;