Initial commit - PezkuwiChain Web Governance App

This commit is contained in:
2025-10-22 18:21:46 -07:00
commit 9aab34c101
135 changed files with 24254 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import { createClient } from '@supabase/supabase-js';
// Initialize Supabase client
// Using direct values from project configuration
const supabaseUrl = 'https://vbhftvdayqfmcgmzdxfv.supabase.co';
const supabaseKey = 'sb_publishable_Aq6cShprdtxYyUsohmsquQ_OurU7w07';
const supabase = createClient(supabaseUrl, supabaseKey);
export { supabase };