Skip to content

Commit 9e01411

Browse files
committed
update
1 parent 74c5191 commit 9e01411

5 files changed

Lines changed: 166 additions & 4 deletions

File tree

docs/favicon.svg

Lines changed: 6 additions & 0 deletions
Loading

docs/index.html

Lines changed: 102 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,110 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Zumerlab — A small lab building unusual web tools</title>
6+
<title>Zumerlab — Open-source web tools: Orbit, Zumly, snapDOM</title>
77
<meta name="description" content="Zumerlab is an independent software lab building open-source web primitives: Orbit (radial CSS UIs), Zumly (zoom navigation), and snapDOM (DOM capture)." />
8-
<meta property="og:title" content="Zumerlab" />
9-
<meta property="og:description" content="An independent software lab building open-source web primitives." />
10-
<meta property="og:url" content="https://zumerlab.com" />
8+
<meta name="author" content="Zumerlab" />
9+
<meta name="keywords" content="Zumerlab, Orbit CSS, Zumly, snapDOM, radial UI, zoom navigation, DOM to image, open source, web components" />
10+
<meta name="robots" content="index, follow, max-image-preview:large" />
11+
<meta name="theme-color" content="#0a0a0b" />
12+
<link rel="canonical" href="https://zumerlab.com/" />
13+
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
14+
<link rel="apple-touch-icon" href="/favicon.svg" />
15+
16+
<!-- Open Graph -->
17+
<meta property="og:site_name" content="Zumerlab" />
18+
<meta property="og:title" content="Zumerlab — Open-source web tools" />
19+
<meta property="og:description" content="An independent software lab building open-source web primitives: Orbit, Zumly, and snapDOM." />
20+
<meta property="og:url" content="https://zumerlab.com/" />
1121
<meta property="og:type" content="website" />
22+
<meta property="og:locale" content="en_US" />
23+
<meta property="og:image" content="https://zumerlab.com/og.svg" />
24+
<meta property="og:image:width" content="1200" />
25+
<meta property="og:image:height" content="630" />
26+
<meta property="og:image:alt" content="Zumerlab — a small lab building unusual web tools" />
27+
28+
<!-- Twitter -->
29+
<meta name="twitter:card" content="summary_large_image" />
30+
<meta name="twitter:title" content="Zumerlab — Open-source web tools" />
31+
<meta name="twitter:description" content="An independent software lab building open-source web primitives: Orbit, Zumly, and snapDOM." />
32+
<meta name="twitter:image" content="https://zumerlab.com/og.svg" />
33+
<meta name="twitter:image:alt" content="Zumerlab — a small lab building unusual web tools" />
34+
35+
<!-- JSON-LD: Organization -->
36+
<script type="application/ld+json">
37+
{
38+
"@context": "https://schema.org",
39+
"@type": "Organization",
40+
"name": "Zumerlab",
41+
"alternateName": "Zumer Lab",
42+
"url": "https://zumerlab.com/",
43+
"logo": "https://zumerlab.com/favicon.svg",
44+
"description": "An independent software lab building open-source web primitives.",
45+
"sameAs": [
46+
"https://github.com/zumerlab",
47+
"https://www.npmjs.com/~zumer"
48+
]
49+
}
50+
</script>
51+
52+
<!-- JSON-LD: WebSite -->
53+
<script type="application/ld+json">
54+
{
55+
"@context": "https://schema.org",
56+
"@type": "WebSite",
57+
"name": "Zumerlab",
58+
"url": "https://zumerlab.com/",
59+
"inLanguage": "en"
60+
}
61+
</script>
62+
63+
<!-- JSON-LD: Software products -->
64+
<script type="application/ld+json">
65+
{
66+
"@context": "https://schema.org",
67+
"@graph": [
68+
{
69+
"@type": "SoftwareApplication",
70+
"name": "Orbit",
71+
"alternateName": "@zumer/orbit",
72+
"applicationCategory": "DeveloperApplication",
73+
"operatingSystem": "Web",
74+
"url": "https://zumerlab.github.io/orbit-docs/",
75+
"downloadUrl": "https://www.npmjs.com/package/@zumer/orbit",
76+
"description": "A CSS framework for building radial UIs — gauges, donuts, knobs, pie menus, dashboards — with CSS only.",
77+
"license": "https://opensource.org/licenses/MIT",
78+
"author": { "@type": "Organization", "name": "Zumerlab" },
79+
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" }
80+
},
81+
{
82+
"@type": "SoftwareApplication",
83+
"name": "Zumly",
84+
"applicationCategory": "DeveloperApplication",
85+
"operatingSystem": "Web",
86+
"url": "https://zumerlab.github.io/zumly/",
87+
"downloadUrl": "https://www.npmjs.com/package/zumly",
88+
"description": "A JavaScript library for hierarchical zoom navigation — Z over XY.",
89+
"license": "https://opensource.org/licenses/MIT",
90+
"author": { "@type": "Organization", "name": "Zumerlab" },
91+
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" }
92+
},
93+
{
94+
"@type": "SoftwareApplication",
95+
"name": "snapDOM",
96+
"alternateName": "@zumer/snapdom",
97+
"applicationCategory": "DeveloperApplication",
98+
"operatingSystem": "Web",
99+
"url": "https://zumerlab.github.io/snapdom/",
100+
"downloadUrl": "https://www.npmjs.com/package/@zumer/snapdom",
101+
"description": "A fast and accurate DOM-to-image capture tool. Exports to SVG, PNG, JPG, WebP, canvas, or Blob.",
102+
"license": "https://opensource.org/licenses/MIT",
103+
"author": { "@type": "Organization", "name": "Zumerlab" },
104+
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" }
105+
}
106+
]
107+
}
108+
</script>
109+
12110
<link rel="preconnect" href="https://fonts.googleapis.com" />
13111
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
14112
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=Instrument+Serif:ital@0;1&display=swap" rel="stylesheet" />

docs/og.svg

Lines changed: 45 additions & 0 deletions
Loading

docs/robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: https://zumerlab.com/sitemap.xml

docs/sitemap.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3+
<url>
4+
<loc>https://zumerlab.com/</loc>
5+
<lastmod>2026-04-26</lastmod>
6+
<changefreq>monthly</changefreq>
7+
<priority>1.0</priority>
8+
</url>
9+
</urlset>

0 commit comments

Comments
 (0)