Spaces:
Running
on
Zero
Running
on
Zero
Create static/manifest.json
Browse files- static/manifest.json +22 -0
static/manifest.json
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "Citation Tool",
|
3 |
+
"short_name": "CiteTool",
|
4 |
+
"description": "AI-powered citation generator for APA7 and Chicago styles",
|
5 |
+
"start_url": "/",
|
6 |
+
"display": "standalone",
|
7 |
+
"background_color": "#ffffff",
|
8 |
+
"theme_color": "#ff7c00",
|
9 |
+
"orientation": "portrait-primary",
|
10 |
+
"icons": [
|
11 |
+
{
|
12 |
+
"src": "static/icon-192.png",
|
13 |
+
"sizes": "192x192",
|
14 |
+
"type": "image/png"
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"src": "static/icon-512.png",
|
18 |
+
"sizes": "512x512",
|
19 |
+
"type": "image/png"
|
20 |
+
}
|
21 |
+
]
|
22 |
+
}
|