ProxMenux/web/components/footer.tsx

72 lines
2.5 KiB
TypeScript
Raw Permalink Normal View History

2025-02-14 11:45:55 +01:00
"use client"
2025-02-13 23:04:40 +01:00
import Link from "next/link"
import { MessageCircle } from "lucide-react"
import Image from "next/image"
export default function Footer() {
return (
<footer className="bg-gray-900 text-white py-12">
<div className="container mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex flex-col md:flex-row justify-between">
{/* Support Section - Left Side */}
<div className="flex flex-col items-start mb-8 md:mb-0">
<h4 className="text-lg font-semibold mb-4">Sponsor</h4>
<p className="text-gray-400 mb-4 max-w-md">
2025-02-16 00:28:11 +01:00
If you would like to support the project.
2025-02-13 23:04:40 +01:00
</p>
<a
href="https://ko-fi.com/G2G313ECAN"
target="_blank"
rel="noopener noreferrer"
className="hover:opacity-90 transition-opacity flex items-center"
>
<Image
2025-02-16 00:22:11 +01:00
src="https://raw.githubusercontent.com/MacRimi/ProxMenux/main/images/kofi.png"
2025-02-13 23:04:40 +01:00
alt="Support me on Ko-fi"
2025-02-16 13:35:13 +01:00
width={140}
height={40}
className="w-[140px]"
2025-02-14 11:45:55 +01:00
loading="lazy"
2025-02-13 23:04:40 +01:00
/>
</a>
</div>
{/* Connect Section - Right Side */}
<div className="flex flex-col items-start md:items-end">
<h4 className="text-lg font-semibold mb-4">Connect</h4>
<p className="text-gray-400 mb-4 max-w-md md:text-right">
2025-02-16 13:01:12 +01:00
Join the community discussions on GitHub to get help, share ideas, and contribute to the project. Every idea is welcome!
2025-02-13 23:04:40 +01:00
</p>
<Link
href="https://github.com/MacRimi/ProxMenux/discussions"
className="flex items-center text-blue-400 hover:text-blue-300 transition-colors duration-200"
target="_blank"
rel="noopener noreferrer"
>
<MessageCircle className="mr-2 h-5 w-5" />
Join the Discussion
</Link>
</div>
</div>
{/* Copyright - Center */}
<div className="mt-8 pt-8 border-t border-gray-800 text-center text-gray-400">
2025-04-16 21:49:03 +02:00
<p>
ProxMenux, an open-source and collaborative project by{' '}
<a
2025-04-19 21:32:52 +02:00
href="https://macrimi.pro"
2025-04-16 21:49:03 +02:00
target="_blank"
rel="noopener noreferrer"
className="text-blue-400 hover:underline"
>
MacRimi
</a>.
</p>
</div>
2025-02-13 23:04:40 +01:00
</div>
</footer>
)
}