ObservabilityOverviewFooter.tsx19 lines · main
1import Link from 'next/link'
2
3export const ObservabilityOverviewFooter = () => {
4 return (
5 <div className="py-12 flex items-center justify-center">
6 <p className="text-sm text-foreground-light">
7 <Link
8 href="https://supabase.com/docs/guides/troubleshooting"
9 target="_blank"
10 rel="noopener noreferrer"
11 className="text-foreground underline underline-offset-2 decoration-foreground-muted hover:decoration-foreground transition-all"
12 >
13 View our troubleshooting guides
14 </Link>{' '}
15 for solutions to common Briven issues.{' '}
16 </p>
17 </div>
18 )
19}