-
Notifications
You must be signed in to change notification settings - Fork 289
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (128 loc) · 4.42 KB
/
index.html
File metadata and controls
136 lines (128 loc) · 4.42 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>
Paint Board - Open Source Creative Canvas | Draw, Design & Create Online
</title>
<meta
name="title"
content="Paint Board - Open Source Creative Canvas | Draw, Design & Create Online"
/>
<meta
name="description"
content="A powerful web-based creative canvas for drawing, designing, and digital art creation."
/>
<meta
name="keywords"
content="drawing board, paint board, html canvas, canvas, digital art, online drawing, creative tools, web design, sketch, illustration, AI image segmentation, drawing app, design tool"
/>
<meta name="author" content="Leo" />
<meta name="robots" content="index, follow" />
<meta name="language" content="English" />
<meta name="revisit-after" content="7 days" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lhrun.github.io/paint-board/" />
<meta
property="og:title"
content="Paint Board - Open Source Creative Canvas"
/>
<meta
property="og:description"
content="A powerful web-based creative canvas for drawing, designing, and digital art creation."
/>
<meta
property="og:image"
content="https://raw.githubusercontent.com/LHRUN/file-store/main/paint-board/logo.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="Paint Board" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:url"
content="https://lhrun.github.io/paint-board/"
/>
<meta
property="twitter:title"
content="Paint Board - Open Source Creative Canvas"
/>
<meta
property="twitter:description"
content="A powerful web-based creative canvas for drawing, designing, and digital art creation."
/>
<meta
property="twitter:image"
content="https://raw.githubusercontent.com/LHRUN/file-store/main/paint-board/logo.png"
/>
<meta property="twitter:creator" content="@Song_LongHao" />
<!-- Favicon and Icons -->
<link rel="icon" type="image/svg+xml" href="/paint-board/canvas.svg" />
<link
rel="apple-touch-icon"
sizes="192x192"
href="/paint-board/pwa-192.png"
/>
<link
rel="icon"
type="image/png"
sizes="192x192"
href="/paint-board/pwa-192.png"
/>
<link
rel="icon"
type="image/png"
sizes="512x512"
href="/paint-board/pwa-512.png"
/>
<!-- Canonical URL -->
<link rel="canonical" href="https://lhrun.github.io/paint-board/" />
<!-- Theme Color -->
<meta name="theme-color" content="#eef1ff" />
<meta name="msapplication-TileColor" content="#eef1ff" />
<!-- Preconnect to external domains for performance -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Paint Board",
"description": "A powerful web-based creative canvas for drawing, designing, and digital art creation",
"url": "https://lhrun.github.io/paint-board/",
"applicationCategory": "DesignApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"creator": {
"@type": "Person",
"name": "Leo"
},
"screenshot": "https://raw.githubusercontent.com/LHRUN/file-store/main/paint-board/logo.png",
"featureList": [
"Multiple drawing tools",
"Shape creation and editing",
"Layer management",
"Export functionality",
"PWA support",
"Multi-language support"
],
"browserRequirements": "Requires JavaScript. Requires HTML5.",
"softwareVersion": "2.0.0"
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>