This project is a cabin management system where a cabin manager can check the cabin details, book the guests and manage them, with all the expenditures using a dashboard.
I have used ReactJS for the front end, Supabase for the backend tooling, and ReactQuery for managing the state.
''' import { createClient } from '@supabase/supabase-js';
export const supabaseUrl = '{addUrlHere}'; const supabaseKey = '{addKeyHere}'; const supabase = createClient(supabaseUrl, supabaseKey);
export default supabase; '''