From 78ed95b29ba40dd7381ff58c72468b695cb214e1 Mon Sep 17 00:00:00 2001 From: keyhan Date: Fri, 19 Jun 2026 19:55:37 +0330 Subject: [PATCH] feat(landing): restructure footer with enamad seal, contact info, and logo - Remove login/register/dashboard nav links from the footer - Add Enamad trust seal on the left - Center the contact block (title, phone, email) in the middle - Move the logo to the right side - Place the copyright line at the bottom, centered - Update copyright text and add contact strings (fa/en) Co-Authored-By: Claude Opus 4.8 --- .../components/landing/sections/Footer.tsx | 53 +++++++++++++------ frontend/src/i18n/dictionaries/en.ts | 5 +- frontend/src/i18n/dictionaries/fa.ts | 5 +- 3 files changed, 46 insertions(+), 17 deletions(-) diff --git a/frontend/src/components/landing/sections/Footer.tsx b/frontend/src/components/landing/sections/Footer.tsx index 733efa0..36f7e3a 100644 --- a/frontend/src/components/landing/sections/Footer.tsx +++ b/frontend/src/components/landing/sections/Footer.tsx @@ -1,6 +1,5 @@ 'use client'; -import { Link } from '@/i18n/Link'; import { Logo } from '../Logo'; import { useT } from '@/i18n/I18nProvider'; @@ -8,20 +7,44 @@ export function Footer() { const t = useT(); return ( ); diff --git a/frontend/src/i18n/dictionaries/en.ts b/frontend/src/i18n/dictionaries/en.ts index baaa53c..a0ecadf 100644 --- a/frontend/src/i18n/dictionaries/en.ts +++ b/frontend/src/i18n/dictionaries/en.ts @@ -112,7 +112,10 @@ const en: Dictionary = { ctaSecondary: 'Dashboard', }, footer: { - copyright: '© Abrban — All rights reserved', + copyright: 'All rights to this website belong to Abrban', + contactTitle: 'Contact us', + phone: '021-91092762', + email: 'info@abrban.com', }, }, diff --git a/frontend/src/i18n/dictionaries/fa.ts b/frontend/src/i18n/dictionaries/fa.ts index 9b0fb3b..74041e3 100644 --- a/frontend/src/i18n/dictionaries/fa.ts +++ b/frontend/src/i18n/dictionaries/fa.ts @@ -111,7 +111,10 @@ const fa = { ctaSecondary: 'داشبورد', }, footer: { - copyright: '© ابربان — همهٔ حقوق محفوظ است', + copyright: 'کلیه حقوق این وبسایت متعلق به ابربان می‌باشد', + contactTitle: 'تماس با ما', + phone: '۰۲۱-۹۱۰۹۲۷۶۲', + email: 'info@abrban.com', }, },