A portfolio builder for designers & creatives. Choose from 4 curated design systems — Webflow, Stripe, Linear, Apple.
Each system has its own typography, color palette, spacing, and components — modeled after designs analyzed on getdesign.md.
Run this SQL in your Supabase SQL Editor:
CREATE TABLE portfolios ( id UUID DEFAULT gen_random_uuid() PRIMARY KEY, created_at TIMESTAMPTZ DEFAULT NOW(), updated_at TIMESTAMPTZ DEFAULT NOW(), name TEXT NOT NULL, style TEXT DEFAULT 'webflow', brand JSONB DEFAULT '{}', projects JSONB DEFAULT '[]', contact JSONB DEFAULT '{}' );