(pronounced 'peculiar')
Custom made to order pieces for a chosen generation — a peculiar people. Modest, stylish and affordable, crafted right here in Accra.
We make minimalistic clothes for the modern woman — elegant pieces with simple silhouettes and clean lines.
Our inspo pics offer several options you can choose from — sleeves, necklines, silhouettes and more.
Everything is custom made to order — modest, stylish, and priced to be accessible right here in Accra.
I'm Barbara, the face behind the brand.
Welcome to the PCLR page! PCLR (pronounced 'peculiar') is a custom fashion studio based in Accra, Ghana.
Custom pieces made with love, intention, and a little bit of peculiar magic — right here in Accra.
Each garment is custom made to order — your measurements, your fabric, your style.
Hand-selected fabrics — the foundation of every PCLR piece.
Fill in your details below and we'll reach out within 24 hours to get started.
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);