/* Wordmark — the brand logo rendered as HTML so webfonts apply reliably */
function Wordmark({ size = 44, tag = false, color }) {
const sonalSize = size;
const studioSize = size * 0.86;
const studioOffset = sonalSize * 0.92;
const tagSize = Math.max(9, size * 0.18);
return (
Sonal
studio
{tag && (
Web design · Ireland
)}
);
}
window.Wordmark = Wordmark;