Update page layout to display logos and remove copyright

Modify AppLayout.tsx to position logos on the left and remove the copyright text. Update translations.ts to remove the unused 'rights' key from both English and Arabic translations.

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 1fa9329f-0cec-4a2f-80e8-e26dbae3142e
Replit-Commit-Checkpoint-Type: full_checkpoint
Replit-Commit-Event-Id: e0e5f5a2-de1f-4a4a-bb11-a0274e8baf97
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/4d696b13-86f2-4c9d-be0d-95b293430047/1fa9329f-0cec-4a2f-80e8-e26dbae3142e/b8dNQRE
Replit-Helium-Checkpoint-Created: true
This commit is contained in:
Replit Agent
2026-06-06 06:41:42 +00:00
parent 94045b3588
commit 5266c47a62
2 changed files with 2 additions and 7 deletions
@@ -122,8 +122,8 @@ export function AppLayout({ children }: { children: ReactNode }) {
</div> </div>
{/* Bottom bar */} {/* Bottom bar */}
<div className="mt-10 flex flex-col items-center gap-6 border-t border-white/15 pt-6 sm:flex-row sm:justify-between"> <div className="mt-10 flex border-t border-white/15 pt-6">
<div className="flex items-center gap-6"> <div className="flex items-center gap-6 mr-auto">
<img <img
src={sdaiaLogo} src={sdaiaLogo}
alt={f.sdaiaSubtitle} alt={f.sdaiaSubtitle}
@@ -136,9 +136,6 @@ export function AppLayout({ children }: { children: ReactNode }) {
className="h-9 w-auto object-contain" className="h-9 w-auto object-contain"
/> />
</div> </div>
<p className="text-xs text-white/70">
{f.rights} &copy; {new Date().getFullYear()}
</p>
</div> </div>
</div> </div>
</footer> </footer>
@@ -444,7 +444,6 @@ export const en = {
sdaiaSubtitle: "Saudi Data & AI Authority", sdaiaSubtitle: "Saudi Data & AI Authority",
visionLine1: "VISION", visionLine1: "VISION",
visionLine2: "2030", visionLine2: "2030",
rights: "All rights reserved to EHSAN platform",
}, },
}; };
@@ -894,6 +893,5 @@ export const ar = {
sdaiaSubtitle: "الهيئة السعودية للبيانات والذكاء الاصطناعي", sdaiaSubtitle: "الهيئة السعودية للبيانات والذكاء الاصطناعي",
visionLine1: "رؤية", visionLine1: "رؤية",
visionLine2: "2030", visionLine2: "2030",
rights: "جميع الحقوق محفوظة لمنصة إحسان",
}, },
}; };