-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
85 lines (85 loc) · 3.48 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ArtistAssistApp</title>
<meta
name="description"
content="ArtistAssistApp is a web app that helps artists to mix colors from photos, analyze tonal values, outline photos, draw with grids, paint with limited palettes, and more."
/>
<meta property="og:title" content="Painting and Drawing Assistant App 🎨🖌️ ArtistAssistApp" />
<meta
property="og:description"
content="ArtistAssistApp is a web app that helps artists to mix colors from photos, analyze tonal values, outline photos, draw with grids, paint with limited palettes, and more."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://app.artistassistapp.com" />
<meta property="og:image" content="/assets/images/logo-1200x630.webp" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<link rel="apple-touch-icon" href="/assets/favicon/apple-touch-icon.png" />
<link rel="icon" href="/assets/favicon/favicon.ico" sizes="48x48" />
<link rel="icon" href="/assets/favicon/favicon.svg" sizes="any" type="image/svg+xml" />
<link rel="manifest" href="/app.webmanifest" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script type="application/ld+json">
{
"@type": "WebApplication",
"@id": "https://app.artistassistapp.com/#webapplication",
"name": "ArtistAssistApp",
"url": "https://app.artistassistapp.com/",
"browserRequirements": "Requires an up-to-date version of Google Chrome, Firefox, Opera, Samsung Internet or Microsoft Edge.",
"sameAs": "https://artistassistapp.com/",
"applicationCategory": "DesignApplication",
"applicationSubCategory": "Painting and Drawing Assistant App",
"operatingSystem": "Windows, macOS, Linux, iOS, Android, ChromeOS",
"memoryRequirements": "2-GB",
"copyrightHolder": {
"@type": "Person",
"@id": "https://github.com/eugene-khyst#person",
"name": "Eugene Khyst",
"image": "https://github.com/eugene-khyst.png",
"jobTitle": "Principal Software Engineer and Software Architect",
"sameAs": ["https://github.com/eugene-khyst", "https://www.linkedin.com/in/eugene-khyst/"]
},
"creator": {"@id": "https://github.com/eugene-khyst#person"},
"offers": {
"@type": "AggregateOffer",
"highPrice": "5",
"lowPrice": "0",
"offerCount": "2",
"priceCurrency": "USD",
"offers": [
{
"@type": "Offer",
"priceSpecification": {
"@type": "UnitPriceSpecification",
"price": "0",
"priceCurrency": "USD",
"name": "Free tier"
}
},
{
"@type": "Offer",
"priceSpecification": {
"@type": "UnitPriceSpecification",
"price": "5",
"priceCurrency": "USD",
"name": "Standard tier",
"referenceQuantity": {
"@type": "QuantitativeValue",
"value": "1",
"unitCode": "MON"
}
}
}
]
}
}
</script>
</body>
</html>