import { Link } from "react-router-dom"; import { Popover, PopoverTrigger, PopoverContent } from "@/components/ui/popover"; import { Button } from "@/components/ui/button"; import type { BacklinkPage } from "@/hooks/useBacklinks"; interface Props { backlinks: BacklinkPage[]; } export default function BacklinkIndicator({ backlinks }: Props) { if (backlinks.length === 0) return null; return ( } > ← {backlinks.length} backlink{backlinks.length !== 1 ? "s" : ""}

Pages linking here

); }