[object Object]

← back to Dw Sarah Rowland Searchfix

TK-10037: build Meet-the-Koroseal-Designers directory page (13 cards, self-hosted portraits) + local preview; publish gated pending Steve

ce8dd7e6a79157de86beb0aa88de283e45111980 · 2026-07-30 09:35:30 -0700 · Steve Abrams

Files touched

Diff

commit ce8dd7e6a79157de86beb0aa88de283e45111980
Author: Steve Abrams <steve@designerwallcoverings.com>
Date:   Thu Jul 30 09:35:30 2026 -0700

    TK-10037: build Meet-the-Koroseal-Designers directory page (13 cards, self-hosted portraits) + local preview; publish gated pending Steve
---
 build-html.mjs               | 36 +++++++++++++++++++
 koroseal-designers-page.html | 82 ++++++++++++++++++++++++++++++++++++++++++++
 portrait-cdn-map.json        | 15 ++++++++
 preview-server.mjs           |  4 +++
 preview.html                 | 82 ++++++++++++++++++++++++++++++++++++++++++++
 upload-all-portraits.mjs     | 28 +++++++++++++++
 6 files changed, 247 insertions(+)

diff --git a/build-html.mjs b/build-html.mjs
new file mode 100644
index 0000000..45c8fab
--- /dev/null
+++ b/build-html.mjs
@@ -0,0 +1,36 @@
+import fs from 'node:fs';
+const data=JSON.parse(fs.readFileSync(new URL('./designers.json',import.meta.url)));
+const cdn=JSON.parse(fs.readFileSync(new URL('./portrait-cdn-map.json',import.meta.url)));
+const slug=(n)=>n.toLowerCase().replace(/[^a-z0-9]+/g,'-').replace(/^-|-$/g,'');
+const esc=(s)=>(s||'').replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');
+const cards=data.designers.map(d=>{
+  const img=cdn[slug(d.name)]; const loc=d.location?` &middot; ${esc(d.location)}`:'';
+  const cta=d.in_dw_store?`<div class="kd-cta"><a href="/collections/sarah-rowland-wallpaper-collection">Shop the Collection</a></div>`:'';
+  return `<div class="kd-card">
+<img class="kd-photo" src="${img}?width=560" alt="${esc(d.name)}" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">${esc(d.name)}</h3>
+<p class="kd-role">${esc(d.role)}${loc}</p>
+<p class="kd-bio">${esc(d.bio)}</p>${cta}</div></div>`;
+}).join('\n');
+const body=`<div class="kd-wrap"><style>
+.kd-wrap{max-width:1120px;margin:0 auto}
+.kd-intro{max-width:760px;margin:0 auto 34px;text-align:center;color:#4a463f;line-height:1.6}
+.kd-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:26px}
+.kd-card{border:1px solid #e7e3dc;border-radius:10px;overflow:hidden;display:flex;flex-direction:column;background:#fff}
+.kd-photo{width:100%;aspect-ratio:1/1;object-fit:cover;object-position:50% 28%;background:#f4f1ec;display:block}
+.kd-body{padding:18px 20px 22px;display:flex;flex-direction:column;flex:1}
+.kd-name{margin:0 0 3px;font-size:1.18rem;letter-spacing:.02em}
+.kd-role{margin:0 0 10px;font-style:italic;color:#8a8378;font-size:.88rem}
+.kd-bio{margin:0;font-size:.92rem;line-height:1.55;color:#4a463f}
+.kd-cta{margin-top:16px}
+.kd-cta a{display:inline-block;border:1px solid #1a1a1a;padding:9px 20px;text-decoration:none;color:#1a1a1a;font-size:.82rem;letter-spacing:.05em;text-transform:uppercase}
+.kd-cta a:hover{background:#1a1a1a;color:#fff}
+</style>
+<div class="kd-intro"><p>Meet the artists, photographers, and studios behind the Koroseal wallcovering collection &mdash; original work, translated into contract-grade wallcovering.</p></div>
+<div class="kd-grid">
+${cards}
+</div></div>`;
+fs.writeFileSync(new URL('./koroseal-designers-page.html',import.meta.url), body);
+const pv=`<!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><title>Meet the Koroseal Designers — PREVIEW</title><style>body{font-family:Georgia,serif;color:#1a1a1a;margin:0;padding:40px 20px;background:#faf8f4}h1.pv{text-align:center;font-weight:400;letter-spacing:.04em;margin:0 0 6px}.pvsub{text-align:center;color:#8a8378;font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;margin:0 0 34px}</style></head><body><h1 class=pv>Meet the Koroseal Designers</h1><p class=pvsub>Local preview &middot; not yet published</p>${body}</body></html>`;
+fs.writeFileSync(new URL('./preview.html',import.meta.url), pv);
+console.log('wrote koroseal-designers-page.html ('+body.length+' bytes) + preview.html');
diff --git a/koroseal-designers-page.html b/koroseal-designers-page.html
new file mode 100644
index 0000000..921a8bc
--- /dev/null
+++ b/koroseal-designers-page.html
@@ -0,0 +1,82 @@
+<div class="kd-wrap"><style>
+.kd-wrap{max-width:1120px;margin:0 auto}
+.kd-intro{max-width:760px;margin:0 auto 34px;text-align:center;color:#4a463f;line-height:1.6}
+.kd-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:26px}
+.kd-card{border:1px solid #e7e3dc;border-radius:10px;overflow:hidden;display:flex;flex-direction:column;background:#fff}
+.kd-photo{width:100%;aspect-ratio:1/1;object-fit:cover;object-position:50% 28%;background:#f4f1ec;display:block}
+.kd-body{padding:18px 20px 22px;display:flex;flex-direction:column;flex:1}
+.kd-name{margin:0 0 3px;font-size:1.18rem;letter-spacing:.02em}
+.kd-role{margin:0 0 10px;font-style:italic;color:#8a8378;font-size:.88rem}
+.kd-bio{margin:0;font-size:.92rem;line-height:1.55;color:#4a463f}
+.kd-cta{margin-top:16px}
+.kd-cta a{display:inline-block;border:1px solid #1a1a1a;padding:9px 20px;text-decoration:none;color:#1a1a1a;font-size:.82rem;letter-spacing:.05em;text-transform:uppercase}
+.kd-cta a:hover{background:#1a1a1a;color:#fff}
+</style>
+<div class="kd-intro"><p>Meet the artists, photographers, and studios behind the Koroseal wallcovering collection &mdash; original work, translated into contract-grade wallcovering.</p></div>
+<div class="kd-grid">
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-sarah-rowland.png?width=560" alt="Sarah Rowland" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Sarah Rowland</h3>
+<p class="kd-role">Wallcovering &amp; Textile Designer &middot; Richmond, Virginia</p>
+<p class="kd-bio">Sarah Rowland creates hand-drawn, bespoke patterns from her home studio along the James River. After 20 years in graphic design and study at the Royal College of Art, nature became her guide, mentor, and muse. Her 2022 Koroseal patterns were nominated by Interior Design Magazine in the Contract Wallcovering category.</p><div class="kd-cta"><a href="/collections/sarah-rowland-wallpaper-collection">Shop the Collection</a></div></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-clodagh.jpg?width=560" alt="Clodagh" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Clodagh</h3>
+<p class="kd-role">Founder, Clodagh Design &middot; New York City</p>
+<p class="kd-bio">Clodagh leads an award-winning multi-discipline studio working across 24+ countries, known for feng shui, biophilia, wabi-sabi, and chromatherapy. Her Koroseal Digital Lab designs translate personal travel photography into life-enhancing, wellness-focused wallcoverings.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-roger-thomas.png?width=560" alt="Roger Thomas" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Roger Thomas</h3>
+<p class="kd-role">Founder, The Roger Thomas Collection &middot; Las Vegas, Nevada</p>
+<p class="kd-bio">One of the world's most influential interior designers, Roger Thomas shaped Wynn Hotels &amp; Resorts' iconic interiors and founded The Roger Thomas Collection. His work reinvents classical forms with opulent materials and vibrant color; Interior Design named his Scorpio sconce a 2019 Best of Year.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-chris-collacott.jpg?width=560" alt="Chris Collacott" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Chris Collacott</h3>
+<p class="kd-role">Panoramic Landscape Photographer &middot; Vancouver, BC, Canada</p>
+<p class="kd-bio">Chris Collacott stitches dozens of ultra-high-resolution frames into billion-pixel panoramas of cityscapes and wilderness. With 50+ international awards and a Master in Fine Art, his imagery brings breathtaking depth to large-scale wallcoverings.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-kurt-johnson.jpg?width=560" alt="Kurt Johnson" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Kurt Johnson</h3>
+<p class="kd-role">Nature Photographer &middot; United States</p>
+<p class="kd-bio">Kurt Johnson is a photographer of healing nature images, documenting botanical and landscape scenes for major healthcare systems including Mayo Clinic and Kaiser Permanente. His biophilic imagery turns sterile environments into restorative, wellness-focused spaces.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-mandy-budan.jpg?width=560" alt="Mandy Budan" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Mandy Budan</h3>
+<p class="kd-role">Landscape Artist &middot; Canada</p>
+<p class="kd-bio">Award-winning artist Mandy Budan paints abstract impressionist landscapes that read as realistic from afar and dissolve into intertwined abstract shapes up close. This dual near-and-far reading gives her wallcovering designs a distinctive shape-and-color interplay.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-patty-madden.jpg?width=560" alt="Patty Madden" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Patty Madden</h3>
+<p class="kd-role">Designer &amp; Fine Artist</p>
+<p class="kd-bio">Shaped by early exposure to couture and trained at Parsons School of Design, Patty Madden merges digital technology with geometric design. She uses light and shadow to evoke delicate weaves, architectural trusses, and lace-like structures that shift across the wall.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-sondra-alexander.jpg?width=560" alt="Sondra Alexander" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Sondra Alexander</h3>
+<p class="kd-role">Wallcovering Designer &middot; San Francisco, California</p>
+<p class="kd-bio">Internationally acclaimed for handmade wallcovering masterpieces in paper and fabric, Sondra Alexander works on sixty-foot tables using stone, sand, metal, and plaster. Inspired by the weathered patinas of ancient buildings, her designs carry intense depth, luminosity, and architectural styling.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-stacy-garcia.jpg?width=560" alt="Stacy Garcia" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Stacy Garcia</h3>
+<p class="kd-role">Founder, Stacy Garcia Design Studio &amp; LebaTex &middot; New York</p>
+<p class="kd-bio">Serial entrepreneur Stacy Garcia founded commercial-textile supplier LebaTex and her eponymous product-design and licensing studio. Her internationally recognized collections span resorts, hotels, and homes worldwide.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-republic-of-ii-by-iv.jpg?width=560" alt="Republic of II BY IV" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Republic of II BY IV</h3>
+<p class="kd-role">Product Design Studio &middot; Toronto, Canada</p>
+<p class="kd-bio">Founded in 2012 by the owners of II BY IV DESIGN, Republic of II by IV brings innovative, timeless design and thoughtful detail across furniture, lighting, wallcoverings, fabrics, and carpets.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-evans-and-brown.jpg?width=560" alt="Evans and Brown" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Evans and Brown</h3>
+<p class="kd-role">Mural &amp; Decorative Painting Atelier &middot; San Francisco, California</p>
+<p class="kd-bio">Mark Evans and Charley Brown lead a renowned mural and decorative-painting atelier whose work graces the Wynn, Stanford, Disney, and Skywalker Ranch. For nearly two decades they've designed groundbreaking wallcoverings for Koroseal's Designer collection.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-arte.jpg?width=560" alt="Arte" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Arte</h3>
+<p class="kd-role">Wallcovering House &middot; Belgium</p>
+<p class="kd-bio">Family-owned since 1981, Arte designs and manufactures sophisticated wallcoverings sold in 80+ countries. Its in-house team spends over a year developing each trendsetting collection.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-the-alpha-workshops.jpg?width=560" alt="The Alpha Workshops" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">The Alpha Workshops</h3>
+<p class="kd-role">Decorative-Arts Nonprofit Studio &middot; New York</p>
+<p class="kd-bio">Founded in 1995, The Alpha Workshops is the nation's only nonprofit providing decorative-arts training and employment to creative people with disabilities — melding Bauhaus and Arts &amp; Crafts craftsmanship with social purpose.</p></div></div>
+</div></div>
\ No newline at end of file
diff --git a/portrait-cdn-map.json b/portrait-cdn-map.json
new file mode 100644
index 0000000..c73bd33
--- /dev/null
+++ b/portrait-cdn-map.json
@@ -0,0 +1,15 @@
+{
+  "sarah-rowland": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-sarah-rowland.png",
+  "clodagh": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-clodagh.jpg",
+  "roger-thomas": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-roger-thomas.png",
+  "chris-collacott": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-chris-collacott.jpg",
+  "kurt-johnson": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-kurt-johnson.jpg",
+  "mandy-budan": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-mandy-budan.jpg",
+  "patty-madden": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-patty-madden.jpg",
+  "sondra-alexander": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-sondra-alexander.jpg",
+  "stacy-garcia": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-stacy-garcia.jpg",
+  "republic-of-ii-by-iv": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-republic-of-ii-by-iv.jpg",
+  "evans-and-brown": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-evans-and-brown.jpg",
+  "arte": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-arte.jpg",
+  "the-alpha-workshops": "https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-the-alpha-workshops.jpg"
+}
\ No newline at end of file
diff --git a/preview-server.mjs b/preview-server.mjs
new file mode 100644
index 0000000..a63b0e1
--- /dev/null
+++ b/preview-server.mjs
@@ -0,0 +1,4 @@
+import http from 'node:http'; import fs from 'node:fs';
+const html=fs.readFileSync(new URL('./preview.html',import.meta.url));
+const srv=http.createServer((_,res)=>{res.writeHead(200,{'content-type':'text/html'});res.end(html);});
+srv.listen(0,()=>console.log('PREVIEW: http://127.0.0.1:'+srv.address().port));
diff --git a/preview.html b/preview.html
new file mode 100644
index 0000000..d87a58d
--- /dev/null
+++ b/preview.html
@@ -0,0 +1,82 @@
+<!doctype html><html><head><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1"><title>Meet the Koroseal Designers — PREVIEW</title><style>body{font-family:Georgia,serif;color:#1a1a1a;margin:0;padding:40px 20px;background:#faf8f4}h1.pv{text-align:center;font-weight:400;letter-spacing:.04em;margin:0 0 6px}.pvsub{text-align:center;color:#8a8378;font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;margin:0 0 34px}</style></head><body><h1 class=pv>Meet the Koroseal Designers</h1><p class=pvsub>Local preview &middot; not yet published</p><div class="kd-wrap"><style>
+.kd-wrap{max-width:1120px;margin:0 auto}
+.kd-intro{max-width:760px;margin:0 auto 34px;text-align:center;color:#4a463f;line-height:1.6}
+.kd-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:26px}
+.kd-card{border:1px solid #e7e3dc;border-radius:10px;overflow:hidden;display:flex;flex-direction:column;background:#fff}
+.kd-photo{width:100%;aspect-ratio:1/1;object-fit:cover;object-position:50% 28%;background:#f4f1ec;display:block}
+.kd-body{padding:18px 20px 22px;display:flex;flex-direction:column;flex:1}
+.kd-name{margin:0 0 3px;font-size:1.18rem;letter-spacing:.02em}
+.kd-role{margin:0 0 10px;font-style:italic;color:#8a8378;font-size:.88rem}
+.kd-bio{margin:0;font-size:.92rem;line-height:1.55;color:#4a463f}
+.kd-cta{margin-top:16px}
+.kd-cta a{display:inline-block;border:1px solid #1a1a1a;padding:9px 20px;text-decoration:none;color:#1a1a1a;font-size:.82rem;letter-spacing:.05em;text-transform:uppercase}
+.kd-cta a:hover{background:#1a1a1a;color:#fff}
+</style>
+<div class="kd-intro"><p>Meet the artists, photographers, and studios behind the Koroseal wallcovering collection &mdash; original work, translated into contract-grade wallcovering.</p></div>
+<div class="kd-grid">
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-sarah-rowland.png?width=560" alt="Sarah Rowland" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Sarah Rowland</h3>
+<p class="kd-role">Wallcovering &amp; Textile Designer &middot; Richmond, Virginia</p>
+<p class="kd-bio">Sarah Rowland creates hand-drawn, bespoke patterns from her home studio along the James River. After 20 years in graphic design and study at the Royal College of Art, nature became her guide, mentor, and muse. Her 2022 Koroseal patterns were nominated by Interior Design Magazine in the Contract Wallcovering category.</p><div class="kd-cta"><a href="/collections/sarah-rowland-wallpaper-collection">Shop the Collection</a></div></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-clodagh.jpg?width=560" alt="Clodagh" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Clodagh</h3>
+<p class="kd-role">Founder, Clodagh Design &middot; New York City</p>
+<p class="kd-bio">Clodagh leads an award-winning multi-discipline studio working across 24+ countries, known for feng shui, biophilia, wabi-sabi, and chromatherapy. Her Koroseal Digital Lab designs translate personal travel photography into life-enhancing, wellness-focused wallcoverings.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-roger-thomas.png?width=560" alt="Roger Thomas" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Roger Thomas</h3>
+<p class="kd-role">Founder, The Roger Thomas Collection &middot; Las Vegas, Nevada</p>
+<p class="kd-bio">One of the world's most influential interior designers, Roger Thomas shaped Wynn Hotels &amp; Resorts' iconic interiors and founded The Roger Thomas Collection. His work reinvents classical forms with opulent materials and vibrant color; Interior Design named his Scorpio sconce a 2019 Best of Year.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-chris-collacott.jpg?width=560" alt="Chris Collacott" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Chris Collacott</h3>
+<p class="kd-role">Panoramic Landscape Photographer &middot; Vancouver, BC, Canada</p>
+<p class="kd-bio">Chris Collacott stitches dozens of ultra-high-resolution frames into billion-pixel panoramas of cityscapes and wilderness. With 50+ international awards and a Master in Fine Art, his imagery brings breathtaking depth to large-scale wallcoverings.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-kurt-johnson.jpg?width=560" alt="Kurt Johnson" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Kurt Johnson</h3>
+<p class="kd-role">Nature Photographer &middot; United States</p>
+<p class="kd-bio">Kurt Johnson is a photographer of healing nature images, documenting botanical and landscape scenes for major healthcare systems including Mayo Clinic and Kaiser Permanente. His biophilic imagery turns sterile environments into restorative, wellness-focused spaces.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-mandy-budan.jpg?width=560" alt="Mandy Budan" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Mandy Budan</h3>
+<p class="kd-role">Landscape Artist &middot; Canada</p>
+<p class="kd-bio">Award-winning artist Mandy Budan paints abstract impressionist landscapes that read as realistic from afar and dissolve into intertwined abstract shapes up close. This dual near-and-far reading gives her wallcovering designs a distinctive shape-and-color interplay.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-patty-madden.jpg?width=560" alt="Patty Madden" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Patty Madden</h3>
+<p class="kd-role">Designer &amp; Fine Artist</p>
+<p class="kd-bio">Shaped by early exposure to couture and trained at Parsons School of Design, Patty Madden merges digital technology with geometric design. She uses light and shadow to evoke delicate weaves, architectural trusses, and lace-like structures that shift across the wall.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-sondra-alexander.jpg?width=560" alt="Sondra Alexander" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Sondra Alexander</h3>
+<p class="kd-role">Wallcovering Designer &middot; San Francisco, California</p>
+<p class="kd-bio">Internationally acclaimed for handmade wallcovering masterpieces in paper and fabric, Sondra Alexander works on sixty-foot tables using stone, sand, metal, and plaster. Inspired by the weathered patinas of ancient buildings, her designs carry intense depth, luminosity, and architectural styling.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-stacy-garcia.jpg?width=560" alt="Stacy Garcia" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Stacy Garcia</h3>
+<p class="kd-role">Founder, Stacy Garcia Design Studio &amp; LebaTex &middot; New York</p>
+<p class="kd-bio">Serial entrepreneur Stacy Garcia founded commercial-textile supplier LebaTex and her eponymous product-design and licensing studio. Her internationally recognized collections span resorts, hotels, and homes worldwide.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-republic-of-ii-by-iv.jpg?width=560" alt="Republic of II BY IV" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Republic of II BY IV</h3>
+<p class="kd-role">Product Design Studio &middot; Toronto, Canada</p>
+<p class="kd-bio">Founded in 2012 by the owners of II BY IV DESIGN, Republic of II by IV brings innovative, timeless design and thoughtful detail across furniture, lighting, wallcoverings, fabrics, and carpets.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-evans-and-brown.jpg?width=560" alt="Evans and Brown" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Evans and Brown</h3>
+<p class="kd-role">Mural &amp; Decorative Painting Atelier &middot; San Francisco, California</p>
+<p class="kd-bio">Mark Evans and Charley Brown lead a renowned mural and decorative-painting atelier whose work graces the Wynn, Stanford, Disney, and Skywalker Ranch. For nearly two decades they've designed groundbreaking wallcoverings for Koroseal's Designer collection.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-arte.jpg?width=560" alt="Arte" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">Arte</h3>
+<p class="kd-role">Wallcovering House &middot; Belgium</p>
+<p class="kd-bio">Family-owned since 1981, Arte designs and manufactures sophisticated wallcoverings sold in 80+ countries. Its in-house team spends over a year developing each trendsetting collection.</p></div></div>
+<div class="kd-card">
+<img class="kd-photo" src="https://cdn.shopify.com/s/files/1/0015/4117/7456/t/182/assets/designer-the-alpha-workshops.jpg?width=560" alt="The Alpha Workshops" loading="lazy">
+<div class="kd-body"><h3 class="kd-name">The Alpha Workshops</h3>
+<p class="kd-role">Decorative-Arts Nonprofit Studio &middot; New York</p>
+<p class="kd-bio">Founded in 1995, The Alpha Workshops is the nation's only nonprofit providing decorative-arts training and employment to creative people with disabilities — melding Bauhaus and Arts &amp; Crafts craftsmanship with social purpose.</p></div></div>
+</div></div></body></html>
\ No newline at end of file
diff --git a/upload-all-portraits.mjs b/upload-all-portraits.mjs
new file mode 100644
index 0000000..632df26
--- /dev/null
+++ b/upload-all-portraits.mjs
@@ -0,0 +1,28 @@
+import fs from 'node:fs'; import os from 'node:os';
+const env=fs.readFileSync(`${os.homedir()}/Projects/secrets-manager/.env`,'utf8');
+const tok=(k)=>(env.match(new RegExp('^'+k+'=(.+)$','m'))||[])[1]?.trim();
+const T=tok('SHOPIFY_THEME_TOKEN')||tok('SHOPIFY_CONTENT_TOKEN')||tok('SHOPIFY_ADMIN_TOKEN');
+const S='designer-laboratory-sandbox.myshopify.com',A='2024-10',ID='144396058675';
+const data=JSON.parse(fs.readFileSync(new URL('./designers.json',import.meta.url)));
+const slug=(n)=>n.toLowerCase().replace(/[^a-z0-9]+/g,'-').replace(/^-|-$/g,'');
+const map={};
+for(const d of data.designers){
+  const s=slug(d.name);
+  try{
+    const img=await fetch(d.portrait_koroseal,{headers:{'User-Agent':'Mozilla/5.0'}});
+    const ct=img.headers.get('content-type')||'image/jpeg';
+    const ext=/png/.test(ct)?'png':'jpg';
+    const buf=Buffer.from(await img.arrayBuffer());
+    const key=`assets/designer-${s}.${ext}`;
+    const put=await fetch(`https://${S}/admin/api/${A}/themes/${ID}/assets.json`,{method:'PUT',
+      headers:{'X-Shopify-Access-Token':T,'Content-Type':'application/json'},
+      body:JSON.stringify({asset:{key, attachment:buf.toString('base64')}})});
+    const j=await put.json();
+    if(put.status!==200){ console.log(`✗ ${d.name}: PUT ${put.status} ${JSON.stringify(j).slice(0,120)}`); continue; }
+    map[s]=j.asset.public_url.split('?')[0];
+    console.log(`✓ ${d.name.padEnd(24)} ${(buf.length/1024|0)}KB ${ext}  ${map[s].slice(-46)}`);
+  }catch(e){ console.log(`✗ ${d.name}: ${e.message}`); }
+  await new Promise(z=>setTimeout(z,150));
+}
+fs.writeFileSync(new URL('./portrait-cdn-map.json',import.meta.url), JSON.stringify(map,null,2));
+console.log(`\nuploaded ${Object.keys(map).length}/${data.designers.length}`);

← aa8201e TK-10037: complete Koroseal designer content library (13 des  ·  back to Dw Sarah Rowland Searchfix  ·  TK-10037: publish Meet-the-Koroseal-Designers page live (id 841c497 →