Admin Portal

ChemiLab Content Management

ChemiLab Admin

Add Question

Type a new name to create a category, or pick one below.

Quick Select:

Import CSV

Format: question, opt1, opt2, opt3, opt4, correct_idx, category

Schema Reference

Ensure your Supabase table matches this structure for the app to work correctly.

create table if not exists quizzes ( id bigint generated by default as identity primary key, question text not null, options jsonb not null, correct_index int not null, category text default 'General', created_at timestamp with time zone default timezone('utc'::text, now()) );