introduced supabase and experiment management UI

This commit is contained in:
2025-11-18 20:25:00 +01:00
parent ab8b8787a8
commit bf42fe2d60
18 changed files with 978 additions and 176 deletions

View File

@@ -0,0 +1,10 @@
import { createBrowserClient } from "@supabase/ssr";
const supabaseUrl = process.env.NEXT_PUBLIC_SUPABASE_URL;
const supabaseKey = process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY;
export const createClient = () =>
createBrowserClient(
supabaseUrl!,
supabaseKey!,
);