feat: update copyright year placeholders and enhance footer styling; add new project titles and descriptions in Persian; implement locale handling in various components

This commit is contained in:
2025-06-16 15:21:44 +03:30
parent 5818c895cd
commit 8ddf2dc7db
15 changed files with 43 additions and 13 deletions
+7 -3
View File
@@ -21,7 +21,7 @@ export default function Footer() {
const whoAreWeLinks = getWhoAreWeLinks(t, locale);
return (
<div className="relative w-full bg-gray-500 pt-24 text-white">
<div className="relative w-full bg-gray-500 pt-12 text-white md:pt-24">
<div className="absolute inset-0 z-10 flex items-end justify-start">
<div className="w-1/2 md:w-2/5">
<Image
@@ -33,7 +33,9 @@ export default function Footer() {
</div>
<div className="relative z-20 container mx-auto">
<div className="flex max-w-[920px] flex-col gap-5 pb-10">
<p className="text-5xl tracking-tighter">{t('footer_title')}</p>
<p className="text-3xl tracking-tighter md:text-5xl">
{t('footer_title')}
</p>
<h5 className="text-base tracking-normal">
{t('footer_description')}
</h5>
@@ -77,7 +79,9 @@ export default function Footer() {
</div>
<div className="py-8 lg:py-14">
<p className="text-center text-sm">{t('footer_copyright')}</p>
<p className="text-center text-sm">
{t('footer_copyright', { year: new Date().getFullYear() })}
</p>
</div>
</div>
</div>