Fix 404 text color

This commit is contained in:
MotorTruck1221 2024-03-21 00:13:46 -06:00
parent 307eedaca1
commit b47e0f4ec7
No known key found for this signature in database
GPG key ID: 06901A625432AC21

View file

@ -16,11 +16,11 @@ export function NotFound() {
<div className="flex h-full flex-col items-center justify-center">
<img src="/404.png" className="h-72"></img>
<div className="flex flex-col items-center p-6">
<p className="font-roboto text-4xl font-bold">{t("404.text")}</p>
<span className="font-roboto text-3xl">404</span>
<p className="font-roboto text-4xl text-text-color font-bold">{t("404.text")}</p>
<span className="font-roboto text-3xl text-text-color">404</span>
</div>
<Link href="/">
<button className="font-roboto h-14 w-44 rounded-2xl border border-input-border-color bg-input p-2 text-center text-xl placeholder:text-input-text focus:outline-none">
<button className="font-roboto h-14 w-44 rounded-2xl text-text-color border border-input-border-color bg-input p-2 text-center text-xl placeholder:text-input-text focus:outline-none">
{t("404.return")}
</button>
</Link>