ProxMenux/web/components/support-project.tsx

30 lines
924 B
TypeScript
Raw Normal View History

2025-02-14 11:41:55 +01:00
"use client"
2025-02-13 20:13:54 +01:00
import { Button } from "@/components/ui/button"
import { Star } from "lucide-react"
export default function SupportProject() {
2025-02-14 11:41:55 +01:00
const handleClick = () => {
window.open("https://github.com/MacRimi/ProxMenux", "_blank")
}
2025-02-13 20:13:54 +01:00
return (
<section className="py-16 bg-gray-900">
<div className="container mx-auto px-4 text-center">
<h2 className="text-3xl font-bold mb-6">Support the Project!</h2>
<p className="text-xl mb-8">
If you find <span className="font-bold">ProxMenux</span> useful, consider giving it a on GitHub to help
others discover it!
</p>
<div className="flex justify-center items-center">
2025-02-14 11:41:55 +01:00
<Button className="bg-yellow-400 text-gray-900 hover:bg-yellow-500" onClick={handleClick}>
2025-02-13 20:13:54 +01:00
<Star className="mr-2" />
Star on GitHub
</Button>
</div>
</div>
</section>
)
}