ObservabilityOverviewFooter.tsx 638 B

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