import { Link, useSearch } from '@tanstack/react-router' import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from '@/components/ui/card' import { AuthLayout } from '../auth-layout' import { UserAuthForm } from './components/user-auth-form' export function SignIn() { const { redirect } = useSearch({ from: '/(auth)/sign-in' }) return ( Sign in Enter your email and password below to log into{' '}
your account. Don't have an account?{' '} Sign Up

By clicking sign in, you agree to our{' '} Terms of Service {' '} and{' '} Privacy Policy .

) }