-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (101 loc) · 4.58 KB
/
Copy pathindex.html
File metadata and controls
108 lines (101 loc) · 4.58 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
102
103
104
105
106
107
108
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Basic SEO -->
<title>Shorter - Modern URL Shortener | Elegant Link Management</title>
<meta
name="description"
content="Shorter is a modern URL shortening service. Transform long URLs into clean, trackable short links. Built on Cloudflare's global edge network for ultra-fast redirects."
/>
<meta name="keywords" content="URL shortener, link shortener, short URL, short link, shorten URL, link management, QR code, click tracking" />
<meta name="author" content="GEMILUXVII" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://shorter-7sc.pages.dev/" />
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/favicon.svg" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://shorter-7sc.pages.dev/" />
<meta property="og:title" content="Shorter - Modern URL Shortener" />
<meta property="og:description" content="Transform long URLs into clean, trackable short links. Built on Cloudflare's global edge network for ultra-fast redirects." />
<meta property="og:image" content="https://shorter-7sc.pages.dev/home.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="Shorter" />
<meta property="og:locale" content="en_US" />
<meta property="og:locale:alternate" content="zh_CN" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:url" content="https://shorter-7sc.pages.dev/" />
<meta name="twitter:title" content="Shorter - Modern URL Shortener" />
<meta name="twitter:description" content="Transform long URLs into clean, trackable short links. Built on Cloudflare's global edge network." />
<meta name="twitter:image" content="https://shorter-7sc.pages.dev/home.png" />
<!-- Additional SEO -->
<meta name="theme-color" content="#1a1a2e" media="(prefers-color-scheme: dark)" />
<meta name="theme-color" content="#f5f0e8" media="(prefers-color-scheme: light)" />
<meta name="application-name" content="Shorter" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="Shorter" />
<!-- Structured Data (JSON-LD) -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Shorter",
"description": "Modern URL shortening service with click tracking, QR codes, and password protection.",
"url": "https://shorter-7sc.pages.dev",
"applicationCategory": "UtilitiesApplication",
"operatingSystem": "Any",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"URL Shortening",
"Custom Short Codes",
"QR Code Generation",
"Click Analytics",
"Password Protection",
"Link Expiration"
],
"author": {
"@type": "Person",
"name": "GEMILUXVII"
}
}
</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&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Fallback content for SEO (visible to crawlers) -->
<noscript>
<div style="padding: 2rem; text-align: center; font-family: system-ui, sans-serif;">
<h1>Shorter - Modern URL Shortener</h1>
<p>Transform long URLs into clean, trackable short links.</p>
<p>Please enable JavaScript to use this application.</p>
<ul style="list-style: none; padding: 0;">
<li>Instant link generation with 6-character codes</li>
<li>Custom short codes for branded links</li>
<li>QR code generation for every link</li>
<li>Real-time click analytics</li>
<li>Password protection for sensitive links</li>
<li>Link expiration options</li>
</ul>
</div>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>