From 55076cc6c9aaf0401c738f43d0c54c1691850a98 Mon Sep 17 00:00:00 2001 From: Anilkumar3494 Date: Sat, 9 May 2026 20:28:17 -0400 Subject: [PATCH 1/9] update meta description for #730 --- index.html | 45 +++++++++++++++++++++++++++++++++++++-------- manifest.json | 4 ++-- 2 files changed, 39 insertions(+), 10 deletions(-) diff --git a/index.html b/index.html index a412676c..ee707d93 100644 --- a/index.html +++ b/index.html @@ -2,6 +2,34 @@ + + + + + + + + + + + + + + + + - - - - - + + diff --git a/manifest.json b/manifest.json index 8d9ab3f1..8f0d9f16 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { - "short_name": "Phlask App", - "name": "Phlask Map", + "short_name": "PHLASK App", + "name": "PHLASK Map", "icons": [ { "src": "./src/assets/favicon.png", From 5dcef55dd7226b7eaf50634b809677c9d8a18f16 Mon Sep 17 00:00:00 2001 From: Anilkumar3494 Date: Mon, 11 May 2026 08:55:58 -0400 Subject: [PATCH 2/9] add meta stuff, mv some files --- .vscode/settings.json | 3 +- index.html | 62 +++++++++++++++++++++++++---- manifest.json | 14 ------- package.json | 1 + pnpm-lock.yaml | 32 +++++++++++++++ {src => public}/assets/favicon.png | Bin public/manifest.json | 23 +++++++++++ 7 files changed, 112 insertions(+), 23 deletions(-) delete mode 100644 manifest.json rename {src => public}/assets/favicon.png (100%) create mode 100644 public/manifest.json diff --git a/.vscode/settings.json b/.vscode/settings.json index 51ce039f..f02adaa5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,5 +4,6 @@ "editor.acceptSuggestionOnEnter": "on", "[typescriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" - } + }, + "cSpell.words": ["PHLASK", "supabase"] } diff --git a/index.html b/index.html index ee707d93..1e9cef00 100644 --- a/index.html +++ b/index.html @@ -9,28 +9,69 @@ - - + + + + + + + - + + + - + - - - From aa1b24db7e4d8a308b94f3f1dc1818fb0940be81 Mon Sep 17 00:00:00 2001 From: Anilkumar3494 Date: Wed, 20 May 2026 12:20:13 -0400 Subject: [PATCH 9/9] fix paths --- index.html | 4 ++-- src/components/SEO/SEO.tsx | 2 +- .../SelectedResourceDetails/SelectedResourceDetails.tsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 74f1266e..b8f5300c 100644 --- a/index.html +++ b/index.html @@ -31,7 +31,7 @@ @@ -45,7 +45,7 @@ /> diff --git a/src/components/SEO/SEO.tsx b/src/components/SEO/SEO.tsx index 59fd85e1..5730636b 100644 --- a/src/components/SEO/SEO.tsx +++ b/src/components/SEO/SEO.tsx @@ -12,7 +12,7 @@ const SEO = ({ title, description, ogType = 'website', - ogImage = 'https://phlask.me/assets/favicon.png', + ogImage = 'https://phlask.me/assets/images/phlask-tessellation.png', canonicalUrl }: SEOProps) => { const siteTitle = 'PHLASK'; diff --git a/src/components/SelectedResourceDetails/SelectedResourceDetails.tsx b/src/components/SelectedResourceDetails/SelectedResourceDetails.tsx index cef6b7b6..67fc0489 100644 --- a/src/components/SelectedResourceDetails/SelectedResourceDetails.tsx +++ b/src/components/SelectedResourceDetails/SelectedResourceDetails.tsx @@ -21,7 +21,7 @@ import useIsMobile from 'hooks/useIsMobile'; import { useState, type MouseEventHandler } from 'react'; import noop from 'utils/noop'; -import sampleImg from '../../../public/assets/images/phlask-tessellation.png'; +import sampleImg from '/assets/images/phlask-tessellation.png'; import EstimatedWalkingDuration from 'components/EstimatedWalkTime/EstimatedWalkTime'; import ResourceHours from 'components/ResourceHours/ResourceHours';