feat: implement authentication login and registration pages with custom dark theme and icon support

This commit is contained in:
Poyraz Avsever
2026-05-07 11:33:31 +03:00
parent a132443c93
commit a958d6cbb8
6 changed files with 240 additions and 67 deletions
+7
View File
@@ -0,0 +1,7 @@
'use client';
import { Icon as IconifyIcon } from '@iconify/react';
export function Icon({ icon, className }: { icon: string; className?: string }) {
return <IconifyIcon icon={icon} className={className} />;
}