Skip to content

Commit

Permalink
pwa
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaymarch7 committed May 14, 2024
1 parent dd88e6e commit 75a09ea
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
Binary file added offline/demo/icon512_maskable.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added offline/demo/icon512_rounded.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions offline/demo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Namaste Frontend System Design</title>
<link rel="stylesheet" href="./style.css" />
<link rel="manifest" href="./manifest.json" />
</head>
<body>
<h1>Namaste Frontend System Design</h1>
Expand Down
26 changes: 26 additions & 0 deletions offline/demo/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"theme_color": "#8936FF",
"background_color": "#2EC6FE",
"icons": [
{
"purpose": "maskable",
"sizes": "512x512",
"src": "icon512_maskable.png",
"type": "image/png"
},
{
"purpose": "any",
"sizes": "512x512",
"src": "icon512_rounded.png",
"type": "image/png"
}
],
"orientation": "any",
"display": "standalone",
"dir": "auto",
"lang": "en-GB",
"name": "Namaste PWA",
"short_name": "Namaste PWA",
"start_url": "/offline/demo",
"scope": "/"
}

0 comments on commit 75a09ea

Please sign in to comment.