mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 01:40:13 -04:00
549ca3677e
## 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>
15 lines
361 B
TypeScript
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>
|
|
)
|
|
}
|