From 19aab438b21a5658459c4cbc1ffde53a9a0d7759 Mon Sep 17 00:00:00 2001 From: JayeshVP24 Date: Wed, 14 Feb 2024 15:28:36 +0530 Subject: [PATCH] chore: favicons and OG image added --- .gitignore | 1 + package.json | 1 + pnpm-lock.yaml | 19 ++++++++++++ src/app.html | 36 +++++++++++++---------- src/routes/+layout.svelte | 33 +++++++++++++++++++++ static/android-chrome-192x192.png | Bin 0 -> 2868 bytes static/android-chrome-512x512.png | Bin 0 -> 8017 bytes static/apple-touch-icon.png | Bin 0 -> 2688 bytes static/browserconfig.xml | 9 ++++++ static/favicon-16x16.png | Bin 0 -> 546 bytes static/favicon-32x32.png | Bin 0 -> 721 bytes static/favicon.ico | Bin 0 -> 7406 bytes static/favicon.png | Bin 1571 -> 0 bytes static/fontalt-og.png | Bin 0 -> 81609 bytes static/mstile-144x144.png | Bin 0 -> 2121 bytes static/mstile-150x150.png | Bin 0 -> 2663 bytes static/mstile-310x150.png | Bin 0 -> 2923 bytes static/mstile-310x310.png | Bin 0 -> 5793 bytes static/mstile-70x70.png | Bin 0 -> 1874 bytes static/safari-pinned-tab.svg | 46 ++++++++++++++++++++++++++++++ static/site.webmanifest | 19 ++++++++++++ 21 files changed, 149 insertions(+), 15 deletions(-) create mode 100644 static/android-chrome-192x192.png create mode 100644 static/android-chrome-512x512.png create mode 100644 static/apple-touch-icon.png create mode 100644 static/browserconfig.xml create mode 100644 static/favicon-16x16.png create mode 100644 static/favicon-32x32.png create mode 100644 static/favicon.ico delete mode 100644 static/favicon.png create mode 100644 static/fontalt-og.png create mode 100644 static/mstile-144x144.png create mode 100644 static/mstile-150x150.png create mode 100644 static/mstile-310x150.png create mode 100644 static/mstile-310x310.png create mode 100644 static/mstile-70x70.png create mode 100644 static/safari-pinned-tab.svg create mode 100644 static/site.webmanifest diff --git a/.gitignore b/.gitignore index 78e1a3b..b1ec405 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ node_modules /build /.svelte-kit /.vercel +/fonts /package .env .env.* diff --git a/package.json b/package.json index a9e3201..55ae4f5 100644 --- a/package.json +++ b/package.json @@ -33,6 +33,7 @@ "prettier-plugin-svelte": "^3.1.2", "svelte": "^4.2.7", "svelte-check": "^3.6.0", + "svelte-seo": "^1.6.0", "tailwindcss": "^3.4.1", "tslib": "^2.4.1", "typescript": "^5.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9acec76..e27519a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -91,6 +91,9 @@ devDependencies: svelte-check: specifier: ^3.6.0 version: 3.6.4(postcss@8.4.35)(svelte@4.2.10) + svelte-seo: + specifier: ^1.6.0 + version: 1.6.0(typescript@5.3.3) tailwindcss: specifier: ^3.4.1 version: 3.4.1 @@ -2586,6 +2589,14 @@ packages: rimraf: 2.7.1 dev: true + /schema-dts@1.1.2(typescript@5.3.3): + resolution: {integrity: sha512-MpNwH0dZJHinVxk9bT8XUdjKTxMYrA5bLtrrGmFA6PTLwlOKnhi67XoRd6/ty+Djt6ZC0slR57qFhZDNMI6DhQ==} + peerDependencies: + typescript: '>=4.1.0' + dependencies: + typescript: 5.3.3 + dev: true + /semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true @@ -2848,6 +2859,14 @@ packages: typescript: 5.3.3 dev: true + /svelte-seo@1.6.0(typescript@5.3.3): + resolution: {integrity: sha512-xgyJ2evRrgukCIOl4EMNrXyKXAQxJVYchqw9iTG1pv143bQ9vnI/wrrI1ew+fOLVRnU7yuJVdvgKUSD+sZXXtg==} + dependencies: + schema-dts: 1.1.2(typescript@5.3.3) + transitivePeerDependencies: + - typescript + dev: true + /svelte@4.2.10: resolution: {integrity: sha512-Ep06yCaCdgG1Mafb/Rx8sJ1QS3RW2I2BxGp2Ui9LBHSZ2/tO/aGLc5WqPjgiAP6KAnLJGaIr/zzwQlOo1b8MxA==} engines: {node: '>=16'} diff --git a/src/app.html b/src/app.html index 6357bb5..fb8e442 100644 --- a/src/app.html +++ b/src/app.html @@ -1,20 +1,26 @@ - - - - - - - - %sveltekit.head% - + + + + + + + + + + + + + + + + %sveltekit.head% + + + +
%sveltekit.body%
+ - -
%sveltekit.body%
- diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 0bcd320..ea53362 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,4 +1,5 @@ + +