ObservabilityLink.tsx20 lines · main
1import Link from 'next/link'
2
3import { DOCS_URL } from '@/lib/constants'
4
5export const ObservabilityLink = () => {
6 return (
7 <div className="flex items-center justify-center gap-1.5 text-sm">
8 <p className="text-foreground-light">
9 Export Metrics to your dashboards.{' '}
10 <Link
11 href={`${DOCS_URL}/guides/telemetry/metrics`}
12 className="text-foreground underline underline-offset-2 decoration-foreground-muted hover:decoration-foreground transition-all"
13 target="_blank"
14 >
15 Get started for free!
16 </Link>
17 </p>
18 </div>
19 )
20}