feat: implement Supabase database schema and core authentication flow with registration and login pages

This commit is contained in:
Poyraz Avsever
2026-05-07 11:11:15 +03:00
parent 4126b41064
commit 904375ea5c
21 changed files with 8832 additions and 127 deletions
+14
View File
@@ -0,0 +1,14 @@
'use client'
import { useEffect } from 'react'
import { toast } from 'react-hot-toast'
export function ErrorToaster({ message }: { message: string }) {
useEffect(() => {
if (message) {
toast.error(message)
}
}, [message])
return null
}