-
-
- Check your email
-
-
- Enter the code we have sent to {email ?? 'your email address'}
-
-
-
-
-
-
- Already have an account?{' '}
-
-
- Sign In
-
-
- .
-
-
-
- );
-};
-
-export default Otp;
diff --git a/apps/web/app/routes/_onboarding/sign-up/route.tsx b/apps/web/app/routes/_onboarding/sign-up/route.tsx
deleted file mode 100644
index 83a3b4956..000000000
--- a/apps/web/app/routes/_onboarding/sign-up/route.tsx
+++ /dev/null
@@ -1,156 +0,0 @@
-import { zodResolver } from '@hookform/resolvers/zod';
-import type { ActionFunctionArgs, MetaFunction } from '@remix-run/node';
-import { Link, redirect } from '@remix-run/react';
-import { $path } from 'remix-routes';
-import { z } from 'zod';
-
-import { createMagicAuth } from '@technifit/authentication/create-magic-auth';
-import { createUser } from '@technifit/authentication/create-user';
-import { Button } from '@technifit/ui/button';
-import {
- Form,
- FormControl,
- FormField,
- FormItem,
- FormLabel,
- FormMessage,
- getValidatedFormData,
- useForm,
-} from '@technifit/ui/form';
-import { Input } from '@technifit/ui/input';
-import { Typography } from '@technifit/ui/typography';
-
-const signUpFormSchema = z.object({
- firstName: z.string({ required_error: 'Please enter your first name' }).min(1),
- lastName: z.string({ required_error: 'Please enter your last name' }).min(1),
- email: z.string({ required_error: 'Please enter your email' }).email().min(1),
-});
-
-type SignUpFormData = z.infer