Skip to content

Commit 41ba7d1

Browse files
committed
fix: fix the typo
1 parent ff7ba4c commit 41ba7d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
},
4444
"NotFound": {
4545
"404": "404",
46-
"dosent_exist_text": "Oops! The page you're looking for doesn't exist.",
46+
"dosen't_exist_text": "Oops! The page you're looking for doesn't exist.",
4747
"go_to_home": "Go back to Home"
4848
}
4949
}

src/app/[locale]/[...notFound]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const NotFound = () => {
88
return (
99
<div className="flex min-h-screen flex-col items-center justify-center bg-gray-100 text-gray-800">
1010
<h1 className="mb-4 text-6xl font-bold">{t('404')} </h1>
11-
<p className="mb-4 text-xl"> {t('dosent_exist_text')} </p>
11+
<p className="mb-4 text-xl"> {t(`dosen't_exist_text`)} </p>
1212
<Link
1313
href="/"
1414
className="mt-4 rounded-lg bg-blue-700 px-6 py-3 text-white transition duration-300 hover:bg-blue-800"

0 commit comments

Comments
 (0)