import LoginForm from '@/app/login/LoginForm' import Typography from '@/components/ui/Typography' import { css, cx } from '@/styled-system/css' import { Center } from '@/styled-system/jsx' import { container } from '@/styled-system/patterns' import { card } from '@/styled-system/recipes' import NextLink from 'next/link' import { type FC } from 'react' const LoginPage: FC = () => { return ( <>
Iniciar sesión
¿No tienes una cuenta? Regístrate
) } export default LoginPage