missed changes from github

This commit is contained in:
William Jeynes
2026-06-23 12:38:46 +01:00
parent 77c2c3acdf
commit 6538d99b6c
11 changed files with 710 additions and 254 deletions
+20 -20
View File
@@ -2,27 +2,27 @@ import React from "react";
import { useTranslation } from "react-i18next";
export default function Footer() {
const { t } = useTranslation("common");
return (
<footer className="w-full bg-gray-900 text-gray-300 py-10 px-6 md:px-16">
<div className="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8 pb-5">
const { t } = useTranslation("common");
<div className="text-sm">
<p>
© {new Date().getFullYear()} Evil.AI. All rights reserved.
</p>
</div>
return (
<footer className="w-full bg-gray-900 text-gray-300 py-10 px-6 md:px-16">
<div className="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-2 gap-8 pb-5">
{/* Disclaimer */}
<div className="text-sm md:text-right">
<p>
The information provided on this website is for general evil
purposes only and does not constitute professional advice. Use of
this product is subject to applicable terms and conditions.
</p>
</div>
{/* Copyright */}
<div className="text-sm">
<p>
© {t("footer.date")} {t("footer.company")}. {t("footer.allRights")}
</p>
</div>
</div>
</footer>
);
{/* Disclaimer */}
<div className="text-sm md:text-right">
<p>
{t("footer.disclaimer")}
</p>
</div>
</div>
</footer>
);
}