From a00f8fa95a37fe47311473fdc423df6e49a65b0d Mon Sep 17 00:00:00 2001 From: Will Baumbach Date: Wed, 6 Aug 2025 23:26:38 -0500 Subject: [PATCH] removing old sign up and sign in pages --- app/(auth)/sign-in2.tsx | 31 ------------------------------- app/(auth)/sign-up2.tsx | 31 ------------------------------- 2 files changed, 62 deletions(-) delete mode 100644 app/(auth)/sign-in2.tsx delete mode 100644 app/(auth)/sign-up2.tsx diff --git a/app/(auth)/sign-in2.tsx b/app/(auth)/sign-in2.tsx deleted file mode 100644 index 640cccb..0000000 --- a/app/(auth)/sign-in2.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import { SignIn } from '@clerk/clerk-react' -import { dark } from '@clerk/themes' -import React from 'react' -import { StyleSheet, View } from 'react-native' - -export default function SignInScreen() { - return ( - - - - ) -} - -const styles = StyleSheet.create({ - container: { - flex: 1, - backgroundColor: '#25292e', - padding: 5, - alignItems: 'center' - } -}) diff --git a/app/(auth)/sign-up2.tsx b/app/(auth)/sign-up2.tsx deleted file mode 100644 index 202a8d8..0000000 --- a/app/(auth)/sign-up2.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import { SignUp } from '@clerk/clerk-expo/web' -import { dark } from '@clerk/themes' -import * as React from 'react' -import { StyleSheet, View } from 'react-native' - -export default function SignUpScreen() { - return ( - - - - ) -} - -const styles = StyleSheet.create({ - container: { - flex: 1, - backgroundColor: '#25292e', - padding: 5, - alignItems: 'center' - } -})