feat: Initialize web application with core pages, skill data, and Supabase integration.

This commit is contained in:
Zied
2026-02-25 17:56:20 +01:00
parent 7c4aa1c88b
commit 68266007b9
6 changed files with 308 additions and 45 deletions

View File

@@ -0,0 +1,9 @@
import { createClient } from '@supabase/supabase-js'
const supabaseUrl = import.meta.env.VITE_SUPABASE_URL || 'https://gczhgcbtjbvfrgfmpbmv.supabase.co';
const supabaseAnonKey = import.meta.env.VITE_SUPABASE_ANON_KEY || 'sb_publishable_CyVwHGbtT80AuDFmXNkc9Q_YNcamTGg';
// Create a single supabase client for interacting with your database
export const supabase = supabaseUrl && supabaseAnonKey
? createClient(supabaseUrl, supabaseAnonKey)
: null