(pronounced 'peculiar')
Custom made to order pieces for a chosen generation — a peculiar people.
Each garment is handcrafted by Accra's finest artisans, blending traditional Ghanaian weaves with contemporary silhouettes.
Hand-selected fabrics from heritage looms and global mills — the foundation of every PCLR piece.
Commission a one-of-a-kind piece. Our master tailors work with you from fabric selection to final fitting — all from Accra.
id:secret · Get at fal.ai/dashboard/keyslocalStorage only. Nothing leaves your machine until you click Generate.
| Garment | Price | Badge | Photo | Status | Actions |
|---|---|---|---|---|---|
| Loading… | |||||
create table garments ( id serial primary key, name text not null, cat text, type text, price numeric, price_type text, description text, badge text, icon text, img_url text, sizes text[], available boolean default true, created_at timestamptz default now() ); create table enquiries ( id serial primary key, firstname text, lastname text, email text, phone text, garment_type text, occasion text, budget text, notes text, bust numeric, waist numeric, hips numeric, shoulder numeric, arm_length numeric, dress_length numeric, fabrics text[], status text default 'new', created_at timestamptz default now() ); -- Storage bucket (run in dashboard: Storage → New bucket → "garments" → Public) -- RLS: allow anon inserts for enquiries alter table enquiries enable row level security; create policy "anon insert" on enquiries for insert to anon with check (true); create policy "admin read" on enquiries for select to anon using (true); -- RLS: allow anon reads for garments alter table garments enable row level security; create policy "public read" on garments for select using (true); create policy "admin write" on garments for all using (true) with check (true);