2025-03-26 15:38:02 +03:00
|
|
|
import Link from "next/link";
|
2026-02-05 12:39:59 +03:00
|
|
|
import {
|
|
|
|
|
FaMastodon,
|
|
|
|
|
FaSteam
|
2026-01-20 01:51:12 +03:00
|
|
|
} from "react-icons/fa";
|
2026-02-05 12:39:59 +03:00
|
|
|
import { SiGitea } from "react-icons/si";
|
2025-03-26 15:38:02 +03:00
|
|
|
|
|
|
|
|
export default function MainFooter() {
|
2026-01-20 01:51:12 +03:00
|
|
|
return (
|
|
|
|
|
<footer className="border-t dark:border-white border-black pt-4 text-2xl">
|
|
|
|
|
<div className="flex lg:flex-row max-md:flex-col justify-around items-start">
|
|
|
|
|
<div className="m-4">
|
|
|
|
|
<h3 className="text-xl mb-3">Socials</h3>
|
|
|
|
|
<div className="flex items-center gap-4">
|
2026-02-05 12:39:59 +03:00
|
|
|
<Link href="https://mastodon.social/@aderkonstantin"
|
|
|
|
|
className="text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
2026-01-20 01:51:12 +03:00
|
|
|
<FaMastodon size={32} />
|
|
|
|
|
</Link>
|
2026-02-05 12:39:59 +03:00
|
|
|
<Link href="https://code.bimka.space/AderKonstantin"
|
|
|
|
|
className="text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
|
|
|
|
<SiGitea size={32} />
|
2026-01-20 01:51:12 +03:00
|
|
|
</Link>
|
2026-02-05 12:39:59 +03:00
|
|
|
<Link href="https://steamcommunity.com/id/aderkonstantin/"
|
|
|
|
|
className="text-gray-800 dark:text-gray-200 hover:text-primary-500 dark:hover:text-primary-400 transition-colors">
|
2026-01-20 01:51:12 +03:00
|
|
|
<FaSteam size={32} />
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="m-4">
|
|
|
|
|
<div className="flex items-center gap-2 mb-3">
|
|
|
|
|
<h3 className="text-xl inline">Other Projects</h3>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="text-lg">
|
2026-02-05 12:39:59 +03:00
|
|
|
<Link href="https://sihirtia.ru/"
|
|
|
|
|
className="text-primary-500 hover:text-primary-600 dark:hover:text-primary-400 transition-colors">
|
2026-01-20 01:51:12 +03:00
|
|
|
Sihirtia Softworks
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div className="mt-8 md:text-center text-foreground-accent px-6">
|
|
|
|
|
<p className="text-base mt-2 dark:text-gray-200 text-gray-700">Ader Konstantin © {new Date().getFullYear()}</p>
|
|
|
|
|
<p className="text-sm my-2 text-gray-500">Made with ♥ by <Link href="https://aderk.org" target="_blank" className="text-primary-500 hover:text-primary-600">AderK</Link></p>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
);
|
2025-03-26 15:38:02 +03:00
|
|
|
}
|