mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-05 05:12:38 +02:00
10 lines
No EOL
290 B
TypeScript
10 lines
No EOL
290 B
TypeScript
import Link from "next/link";
|
|
|
|
export function NewChatLink({demo}: {demo: string}) {
|
|
return <Link
|
|
className="mt-2 text-black flex rounded-lg border border-gray-400 px-4 py-2 disabled:text-gray-400"
|
|
href={`/new/${demo}`}
|
|
>
|
|
Start new chat →
|
|
</Link>
|
|
} |