Add EHSAN favicon and localized browser tab titles (Task #21)
The browser tab previously showed a generic placeholder favicon and the
English title "EHSAN Closed Donation Loop". Per the reference, the tab now
shows the EHSAN logo mark and an Arabic platform title.
Changes:
- Favicon: copied the existing EHSAN logo (src/assets/ehsan-logo.png) to
public/favicon.png and pointed index.html at %BASE_URL%favicon.png
(base-path safe; verified it serves 200 image/png).
- Static head: index.html <title> and OG/Twitter titles + description now
use the Arabic platform name "منصة إحسان".
- Per-page titles: added a DocumentTitle component
(src/hooks/useDocumentTitle.ts) rendered in the Router that sets
document.title to "<page name> - <platform>" based on the current wouter
path and active language, reading from a new translations.meta section
(AR + EN). Home reads "الصفحة الرئيسية - منصة إحسان"; switches with language.
Approach note: titles are centralized in the router rather than edited into
each page file, keeping it DRY while covering all main routes.
Verified: tsc clean; e2e confirmed titles on /, /opportunities, /cart and
English fallback ("Home - EHSAN Platform"), plus favicon load.
This commit is contained in:
@@ -3,16 +3,16 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
|
||||
<title>EHSAN Closed Donation Loop</title>
|
||||
<meta name="description" content="EHSAN Closed Donation Loop — built on Replit. Update this description to reflect the app." />
|
||||
<title>منصة إحسان</title>
|
||||
<meta name="description" content="منصة إحسان — المنصة الوطنية للعمل الخيري والتنموي." />
|
||||
<meta name="robots" content="index, follow" />
|
||||
<meta property="og:title" content="EHSAN Closed Donation Loop" />
|
||||
<meta property="og:description" content="EHSAN Closed Donation Loop — built on Replit. Update this description to reflect the app." />
|
||||
<meta property="og:title" content="منصة إحسان" />
|
||||
<meta property="og:description" content="منصة إحسان — المنصة الوطنية للعمل الخيري والتنموي." />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:title" content="EHSAN Closed Donation Loop" />
|
||||
<meta name="twitter:description" content="EHSAN Closed Donation Loop — built on Replit. Update this description to reflect the app." />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<meta name="twitter:title" content="منصة إحسان" />
|
||||
<meta name="twitter:description" content="منصة إحسان — المنصة الوطنية للعمل الخيري والتنموي." />
|
||||
<link rel="icon" type="image/png" href="%BASE_URL%favicon.png" />
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||||
|
||||
Reference in New Issue
Block a user