Adds manifest
This commit is contained in:
parent
fea9e727fd
commit
1c30552643
2 changed files with 36 additions and 2 deletions
|
@ -11,10 +11,9 @@ export default function Home(): JSX.Element {
|
|||
<Head>
|
||||
<title>tldraw</title>
|
||||
</Head>
|
||||
<div style={{ display: 'absolute', zIndex: 1 }}>
|
||||
<div>
|
||||
<Editor />
|
||||
</div>
|
||||
<button style={{ display: 'absolute', zIndex: 9999999 }}>Sign Out</button>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
|
35
packages/www/public/manifest.json
Normal file
35
packages/www/public/manifest.json
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"name": "tldraw",
|
||||
"short_name": "tldraw",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "any"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-maskable-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "any"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-maskable-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "any maskable"
|
||||
}
|
||||
],
|
||||
"theme_color": "#fafafa",
|
||||
"background_color": "#fafafa",
|
||||
"start_url": "/",
|
||||
"display": "standalone",
|
||||
"orientation": "portrait"
|
||||
}
|
Loading…
Reference in a new issue