'use client'; import dynamic from 'next/dynamic'; // Code-split RegisterForm (313 lines) const RegisterForm = dynamic( /* istanbul ignore next - Next.js dynamic import, tested via component */ () => import('@/components/auth/RegisterForm').then((mod) => ({ default: mod.RegisterForm })), { loading: () => (
), } ); export default function RegisterPage() { return (

Create your account

Get started with your free account today

); }