mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 20:26:53 +00:00
60 lines
2.1 KiB
TypeScript
60 lines
2.1 KiB
TypeScript
"use client"
|
|
|
|
import { Rss, Copy, Check } from "lucide-react"
|
|
import Link from "next/link"
|
|
import { useState } from "react"
|
|
|
|
export default function RSSLink() {
|
|
const [copied, setCopied] = useState(false)
|
|
const rssUrl = "https://macrimi.github.io/ProxMenux/rss.xml"
|
|
|
|
const copyToClipboard = async () => {
|
|
try {
|
|
await navigator.clipboard.writeText(rssUrl)
|
|
setCopied(true)
|
|
setTimeout(() => setCopied(false), 2000)
|
|
} catch (err) {
|
|
console.error("Failed to copy: ", err)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className="mb-8 p-4 bg-orange-50 border border-orange-200 rounded-lg">
|
|
<div className="space-y-3">
|
|
<div>
|
|
<h3 className="text-lg font-semibold text-orange-900 mb-1">Stay Updated!</h3>
|
|
<p className="text-orange-700 text-sm">Subscribe to our RSS feed to get notified of new changes.</p>
|
|
</div>
|
|
|
|
{/* RSS URL and buttons - Responsive layout */}
|
|
<div className="space-y-2">
|
|
<div className="flex items-center gap-2">
|
|
<code className="bg-orange-100 text-orange-800 px-2 py-1 rounded text-xs flex-1 min-w-0 truncate">
|
|
{rssUrl}
|
|
</code>
|
|
<button
|
|
onClick={copyToClipboard}
|
|
className="flex items-center gap-1 px-2 py-1 bg-gray-600 text-white rounded hover:bg-gray-700 transition-colors text-xs whitespace-nowrap"
|
|
title="Copy RSS URL"
|
|
>
|
|
{copied ? <Check className="h-3 w-3" /> : <Copy className="h-3 w-3" />}
|
|
<span className="hidden sm:inline">{copied ? "Copied!" : "Copy"}</span>
|
|
</button>
|
|
</div>
|
|
|
|
<Link
|
|
href={rssUrl}
|
|
className="inline-flex items-center justify-center space-x-2 px-4 py-2 bg-orange-600 text-white rounded-lg hover:bg-orange-700 transition-colors w-full sm:w-auto"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
title="Open RSS Feed"
|
|
>
|
|
<Rss className="h-4 w-4" />
|
|
<span>Open RSS Feed</span>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|