Loading academic content...
    GNOSIS ACADEMY - Academic Repository
To use GNOSIS ACADEMY, you need to create the database table in Supabase:
CREATE TABLE academic_content (
    id BIGSERIAL PRIMARY KEY,
    title TEXT NOT NULL,
    genre TEXT NOT NULL,
    content TEXT NOT NULL,
    created_at TIMESTAMPTZ DEFAULT NOW()
);
ALTER TABLE academic_content ENABLE ROW LEVEL SECURITY;
CREATE POLICY "Allow all operations" ON academic_content
FOR ALL USING (true);
    After creating the table, refresh this page.