feat: initialize Prisma schema and scaffold core application modules including auth, blogs, events, and business directories
Some checks failed
Build and Push App / build (push) Failing after 47s
Some checks failed
Build and Push App / build (push) Failing after 47s
This commit is contained in:
@@ -6,7 +6,9 @@ import Link from 'next/link';
|
||||
import { User, Mail, Lock, ArrowRight, CheckCircle, AlertCircle } from 'lucide-react';
|
||||
|
||||
const RegisterPage = () => {
|
||||
const { settings } = useUser();
|
||||
const router = useRouter();
|
||||
const siteName = settings?.siteName || "Afrohub";
|
||||
const [formData, setFormData] = useState({
|
||||
name: '',
|
||||
email: '',
|
||||
@@ -67,7 +69,7 @@ const RegisterPage = () => {
|
||||
<div className="max-w-md w-full">
|
||||
<div className="text-center mb-10">
|
||||
<Link href="/" className="inline-flex items-center justify-center h-16 w-16 bg-brand-600 rounded-2xl shadow-lg shadow-brand-200 text-white font-bold text-3xl mb-6 hover:scale-105 transition-transform">
|
||||
A
|
||||
{siteName.charAt(0)}
|
||||
</Link>
|
||||
<h2 className="text-4xl font-extrabold text-dark-900 font-serif mb-2">Rejoignez l'aventure</h2>
|
||||
<p className="text-gray-600">Créez votre compte pour propulser votre entreprise</p>
|
||||
@@ -193,7 +195,7 @@ const RegisterPage = () => {
|
||||
</div>
|
||||
|
||||
<p className="mt-8 text-center text-xs text-gray-400 uppercase tracking-widest font-semibold">
|
||||
Afrohub © 2026
|
||||
{siteName} © 2026
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user