"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 = `${typeof window !== "undefined" ? window.location.origin : ""}/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 (
Subscribe to our RSS feed to get notified of new changes.
{rssUrl}