Files
supabase/apps/www/components/Contribute/BackToThreadsLink.tsx
Tomás Pozo 549ca3677e feat: add similar threads on contribute (#42638)
## I have read the
[CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md)
file.

YES

## What kind of change does this PR introduce?

This adds a component showing a list of AI curated related threads to
the detail thread view.

## What is the current behavior?

This is not available.

## What is the new behavior?

A new component on the thread view.

## Additional context

Add any other context or screenshots.

---------

Co-authored-by: Danny White <3104761+dnywh@users.noreply.github.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-03-05 12:06:55 -05:00

15 lines
361 B
TypeScript

import Link from 'next/link'
import { ArrowLeft } from 'lucide-react'
export function BackToThreadsLink() {
return (
<Link
href="/contribute"
className="inline-flex items-center gap-1.5 text-xs text-foreground-lighter hover:text-foreground transition-colors mb-4"
>
<ArrowLeft className="h-3 w-3" />
Threads
</Link>
)
}