mirror of
https://github.com/supabase/supabase.git
synced 2026-05-14 14:49:37 +08:00
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
21 lines
609 B
TypeScript
21 lines
609 B
TypeScript
import Link from 'next/link'
|
|
|
|
import { DOCS_URL } from '@/lib/constants'
|
|
|
|
export const ObservabilityLink = () => {
|
|
return (
|
|
<div className="flex items-center justify-center gap-1.5 text-sm">
|
|
<p className="text-foreground-light">
|
|
Export Metrics to your dashboards.{' '}
|
|
<Link
|
|
href={`${DOCS_URL}/guides/telemetry/metrics`}
|
|
className="text-foreground underline underline-offset-2 decoration-foreground-muted hover:decoration-foreground transition-all"
|
|
target="_blank"
|
|
>
|
|
Get started for free!
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|