INIT REPO

This commit is contained in:
William Jeynes
2026-06-23 11:57:18 +01:00
commit 77c2c3acdf
56 changed files with 14347 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
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">
<div className="text-sm">
<p>
© {new Date().getFullYear()} Evil.AI. All rights reserved.
</p>
</div>
{/* 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>
</div>
</footer>
);
}