export default function Logo({ size = 40, variant = "dark", }: { size?: number; variant?: "dark" | "light"; }) { // A ring of stylised people around a warm sun — approximates the UP Parivaar mark. const people = [ { a: -90, c: "#2530C4" }, // top - navy/blue { a: -30, c: "#F7A400" }, // right upper - yellow { a: 30, c: "#FF8001" }, // right lower - orange { a: 90, c: "#F45700" }, // bottom - deep orange { a: 150, c: "#7ECA4F" }, // left lower - green { a: 210, c: "#3FB27A" }, // left upper - teal-green ]; return ( {people.map((p, i) => { const rad = (p.a * Math.PI) / 180; const cx = 50 + Math.cos(rad) * 31; const cy = 50 + Math.sin(rad) * 31; return ( ); })} UP PARIVAAR DALLAS ); }