import Link from "next/link"; import { Badge } from "@/components/ui/badge"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; export default function ApiReference({ badge, target, link, }: { badge: string; target: string; link: string; }) { return ( API Reference {badge}
WR.DO provide a api for {target}. View the usage tutorial document{" "} here .
); }