-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (95 loc) · 3.75 KB
/
index.html
File metadata and controls
101 lines (95 loc) · 3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<meta name="theme-color" content="#0a0a0a" />
<meta name="color-scheme" content="light" />
<!-- Primary SEO -->
<title>saasmail · The centralized inbox for SaaS teams</title>
<meta
name="description"
content="One unified timeline per customer — marketing, notifications, and support emails collapsed into a single view. Self-hosted on Cloudflare Workers, open source under Apache 2.0."
/>
<meta
name="keywords"
content="saasmail, shared inbox, customer email, support inbox, sales inbox, cloudflare workers, self-hosted email, email infrastructure, multi-inbox, customer timeline, open source email"
/>
<meta name="author" content="saasmail" />
<meta name="robots" content="index, follow, max-image-preview:large" />
<link rel="canonical" href="https://saasmail.dev/" />
<!-- Favicons -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/x-icon" href="/favicon/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.svg" />
<link rel="manifest" href="/site.webmanifest" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="saasmail" />
<meta
property="og:title"
content="saasmail · The centralized inbox for SaaS teams"
/>
<meta
property="og:description"
content="One unified timeline per customer. Self-hosted on Cloudflare Workers, open source under Apache 2.0."
/>
<meta property="og:image" content="/og-image.svg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta
property="og:image:alt"
content="saasmail — the centralized inbox for SaaS teams"
/>
<meta property="og:url" content="https://saasmail.dev/" />
<meta property="og:locale" content="en_US" />
<!-- Twitter / X -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="saasmail · The centralized inbox for SaaS teams"
/>
<meta
name="twitter:description"
content="One unified timeline per customer. Self-hosted on Cloudflare Workers, open source under Apache 2.0."
/>
<meta name="twitter:image" content="/og-image.svg" />
<meta
name="twitter:image:alt"
content="saasmail — the centralized inbox for SaaS teams"
/>
<!-- Structured data — SoftwareApplication -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "saasmail",
"description": "Self-managed email server for SaaS teams on Cloudflare Workers. One unified timeline per customer.",
"applicationCategory": "BusinessApplication",
"operatingSystem": "Cloudflare Workers",
"license": "https://www.apache.org/licenses/LICENSE-2.0",
"url": "https://saasmail.dev/",
"codeRepository": "https://github.com/choyiny/saasmail",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
</script>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Caveat:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>