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
@@ -20,7 +20,7 @@ export default async function ErrorLayout({
const fontClass = locale === 'fa' ? 'font-fa' : 'font-en';
let messages;
try {
messages = (await import(`../../../messages/${locale}.json`)).default;
messages = (await import(`../../../../messages/${locale}.json`)).default;
} catch (error) {
notFound();
}
+1 -1
View File
@@ -27,7 +27,7 @@ export async function generateMetadata({ params }: { params: IPageParams }) {
locale,
url,
},
authors: [{ name: t('meta.author') }],
// authors: [{ name: t('meta.author') }],
};
}