+
+ {/* ── Logo ── */}
+
+
+
+

{
+ const target = e.currentTarget;
+ target.style.display = "none";
+ const fallback = target.nextSibling as HTMLElement | null;
+ if (fallback) {
+ fallback.style.display = "flex";
+ }
+ }}
+ />
+ {/* Fallback if image fails */}
+
+ MC
+
+
+
+
+
+ {/* ── Name & tagline ── */}
+
Metatroncube
+
Software Solution
+
Web · App · ERP · Marketing · SEO · Design
+
+ {/* ── Location pill ── */}
+
+ 🇨🇦 Waterloo, Ontario
+ ·
+ 🇺🇸 USA
+
+
+ {/* ── Stats ── */}
+
+ {stats.map((st, i) => (
+
+ {st.v}
+ {st.l}
+
+ ))}
+
+
+ {/* ── Links ── */}
+
+ {links.map((lk, i) => {
+ const isActive = active === i;
+ return (
+
setActive(i)}
+ onMouseLeave={() => setActive(null)}
+ onTouchStart={() => setActive(i)}
+ onTouchEnd={() => setTimeout(() => setActive(null), 300)}
+ style={{
+ ...s.btn,
+ background: lk.solid
+ ? lk.accent
+ : isActive ? lk.glow : C.card,
+ border: lk.solid
+ ? "1px solid transparent"
+ : `1px solid ${isActive ? lk.accent : C.border}`,
+ boxShadow: isActive
+ ? `0 12px 20px -8px ${lk.glow === "rgba(26, 31, 43, 0.05)" ? "rgba(0,0,0,0.08)" : lk.glow}`
+ : `0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.03)`,
+ transform: isActive ? "translateY(-2px)" : "none",
+ } as React.CSSProperties}
+ >
+ {lk.icon}
+
+
+ {lk.label}
+
+ {lk.sub}
+
+ →
+
+ );
+ })}
+
+
+ {/* ── Phone ── */}
+
e.currentTarget.style.color = "var(--theme-color, #3779b9)"}
+ onMouseLeave={(e) => e.currentTarget.style.color = C.muted}
+ >
+ 📞 +1-647-679-7651
+
+
+ {/* ── Socials ── */}
+
+
+ {/* ── Footer ── */}
+
+ © {new Date().getFullYear()} Metatroncube Software Solution Inc.
+
+
+ Privacy Policy
+
+
+
+