Yeni Proje Kodları

This commit is contained in:
2026-01-03 14:20:27 +03:00
parent fe1916077b
commit 12f31c3633
26 changed files with 3196 additions and 671 deletions

11
lib/supabase.ts Normal file
View File

@@ -0,0 +1,11 @@
import { createClient } from '@supabase/supabase-js'
const supabaseUrl = process.env.NEXT_PUBLIC_SUPABASE_URL
const supabaseKey = process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY
if (!supabaseUrl || !supabaseKey) {
throw new Error('Missing Supabase Environment Variables')
}
export const supabase = createClient(supabaseUrl, supabaseKey)