Skip to content

Commit 979a791

Browse files
committed
feat: Integrate Supabase client and add Loader2 icon to JoinPage.
1 parent 33416f5 commit 979a791

File tree

4 files changed

+394
-181
lines changed

4 files changed

+394
-181
lines changed

client/package-lock.json

Lines changed: 141 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"@react-three/drei": "^10.7.6",
1414
"@react-three/fiber": "^9.3.0",
1515
"@studio-freight/lenis": "^1.0.42",
16+
"@supabase/supabase-js": "^2.95.3",
1617
"framer-motion": "^12.23.21",
1718
"lucide-react": "^0.562.0",
1819
"react": "^19.1.1",

client/src/lib/supabase.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
import { createClient } from '@supabase/supabase-js';
3+
4+
const supabaseUrl = import.meta.env.VITE_SUPABASE_URL;
5+
const supabaseAnonKey = import.meta.env.VITE_SUPABASE_ANON_KEY;
6+
7+
export const supabase = createClient(supabaseUrl, supabaseAnonKey);

0 commit comments

Comments
 (0)