import { createClient } from '@supabase/supabase-js'

// Note: In a real environment, these would be process.env.NEXT_PUBLIC_SUPABASE_URL
// For this environment, we rely on the implementation in App.tsx to simulate behavior
// if keys are missing.

const supabaseUrl = process.env.NEXT_PUBLIC_SUPABASE_URL || 'https://mock.supabase.co'
const supabaseKey = process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY || 'mock-key'

export const supabase = createClient(supabaseUrl, supabaseKey)
