diff --git a/components/core/Avatar/Avatar.tsx b/components/core/Avatar/Avatar.tsx index 025a92068..20ec7454c 100644 --- a/components/core/Avatar/Avatar.tsx +++ b/components/core/Avatar/Avatar.tsx @@ -27,7 +27,7 @@ const Avatar: FC = ({}) => { return (
<>{children} export default function MyApp({ Component, pageProps }: AppProps) { @@ -14,6 +16,14 @@ export default function MyApp({ Component, pageProps }: AppProps) { return ( <> + + + diff --git a/public/icon-144x144.png b/public/icon-144x144.png new file mode 100644 index 000000000..aeeaabd3f Binary files /dev/null and b/public/icon-144x144.png differ diff --git a/public/icon-192x192.png b/public/icon-192x192.png new file mode 100644 index 000000000..055ecf31e Binary files /dev/null and b/public/icon-192x192.png differ diff --git a/public/icon-512x512.png b/public/icon-512x512.png new file mode 100644 index 000000000..754628cb7 Binary files /dev/null and b/public/icon-512x512.png differ diff --git a/public/icon.png b/public/icon.png new file mode 100644 index 000000000..c4df8c7d1 Binary files /dev/null and b/public/icon.png differ diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 000000000..bb792da42 --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1,22 @@ +{ + "name": "Next.js Commerce", + "short_name": "Next.js Commerce", + "description": "Next.js Commerce -> https://www.nextjs.org/commerce", + "display": "standalone", + "start_url": "/", + "theme_color": "#fff", + "background_color": "#000000", + "orientation": "portrait", + "icons": [ + { + "src": "/icon-192x192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "/icon-512x512.png", + "type": "image/png", + "sizes": "512x512" + } + ] +} \ No newline at end of file