Refactor Register page components

Splits the Register page into smaller, more manageable components for better organization and maintainability.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 13:52:41 +00:00
parent 4a39c61976
commit 09f6f9d5fa
6 changed files with 309 additions and 192 deletions

View File

@@ -0,0 +1,13 @@
import React from "react";
const RegisterHeader: React.FC = () => {
return (
<div className="text-center mb-8">
<h1 className="text-3xl font-bold text-neuro-income mb-2"> </h1>
<p className="text-gray-500"> </p>
</div>
);
};
export default RegisterHeader;