ObservabilityLink.tsx 609 B

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