Update website header and footer logos to use the new Ehsan logo

Replace the Vision 2030 logo with the Ehsan logo in the header and reorder images in the footer to display Ehsan before SDAIA. Remove unused translation keys related to Vision 2030.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 1fa9329f-0cec-4a2f-80e8-e26dbae3142e
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: d32d0773-a583-4285-b18d-26c864e9703f
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/4d696b13-86f2-4c9d-be0d-95b293430047/1fa9329f-0cec-4a2f-80e8-e26dbae3142e/F8L3gIv
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
Replit Agent
2026-06-06 07:09:32 +00:00
parent 1cb254dbf6
commit e511b05c1b
3 changed files with 5 additions and 9 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

@@ -4,7 +4,7 @@ import { Phone, Apple, Play } from "lucide-react";
import { Header } from "./Header"; import { Header } from "./Header";
import { useLanguage } from "../../contexts/LanguageContext"; import { useLanguage } from "../../contexts/LanguageContext";
import sdaiaLogo from "@assets/sdaia-white-logo_1780696938873.png"; import sdaiaLogo from "@assets/sdaia-white-logo_1780696938873.png";
import vision2030Logo from "@assets/2030_1780696934734.svg"; import ehsanWhiteLogo from "../../assets/ehsan-white-logo.png";
function XIcon({ className = "" }: { className?: string }) { function XIcon({ className = "" }: { className?: string }) {
return ( return (
@@ -125,13 +125,13 @@ export function AppLayout({ children }: { children: ReactNode }) {
<div className="mt-10 flex border-t border-white/15 pt-6"> <div className="mt-10 flex border-t border-white/15 pt-6">
<div className="flex items-center gap-8 mr-auto"> <div className="flex items-center gap-8 mr-auto">
<img <img
src={sdaiaLogo} src={ehsanWhiteLogo}
alt={f.sdaiaSubtitle} alt={t.common.ehsan}
className="h-14 w-auto object-contain" className="h-14 w-auto object-contain"
/> />
<img <img
src={vision2030Logo} src={sdaiaLogo}
alt={`${f.visionLine1} ${f.visionLine2}`} alt={f.sdaiaSubtitle}
className="h-14 w-auto object-contain" className="h-14 w-auto object-contain"
/> />
</div> </div>
@@ -442,8 +442,6 @@ export const en = {
appStoreLabel: "Download on the App Store", appStoreLabel: "Download on the App Store",
googlePlayLabel: "Get it on Google Play", googlePlayLabel: "Get it on Google Play",
sdaiaSubtitle: "Saudi Data & AI Authority", sdaiaSubtitle: "Saudi Data & AI Authority",
visionLine1: "VISION",
visionLine2: "2030",
}, },
}; };
@@ -891,7 +889,5 @@ export const ar = {
appStoreLabel: "حمله من App Store", appStoreLabel: "حمله من App Store",
googlePlayLabel: "احصل عليه من Google Play", googlePlayLabel: "احصل عليه من Google Play",
sdaiaSubtitle: "الهيئة السعودية للبيانات والذكاء الاصطناعي", sdaiaSubtitle: "الهيئة السعودية للبيانات والذكاء الاصطناعي",
visionLine1: "رؤية",
visionLine2: "2030",
}, },
}; };