Skip to content

Commit

Permalink
Add manifest json
Browse files Browse the repository at this point in the history
  • Loading branch information
gerdesque committed Apr 29, 2023
1 parent 691f6a0 commit 67520df
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ const Home: NextPage = () => {
<title>Creating Generative SVG Grids</title>
<meta name="description" content="Inspired from [Creating Generative SVG Grids](https://frontend.horse/articles/generative-grids/) by Alex Trost" />
<link rel="icon" href="./favicon.ico" />
<link rel="manifest" href="./manifest.json" />
</Head>
<AppBar position="static" sx={{backgroundColor: '#dd8d0e'}}>
<Toolbar>
Expand Down
Binary file added public/icon-192.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 public/icon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"short_name": "SVG Grids",
"name": "Creating Generative SVG Grids",
"theme_color": "#dd8d0e",
"background_color": "#33006c",
"display": "standalone",
"orientation": "portrait",
"scope": "/",
"start_url": "/",
"icons": [
{ "src": "./icon-192.png", "type": "image/png", "sizes": "192x192" },
{ "src": "./icon-512.png", "type": "image/png", "sizes": "512x512", "purpose": "any maskable" }
]
}

0 comments on commit 67520df

Please sign in to comment.