add rowboat app

This commit is contained in:
ramnique 2025-01-13 15:31:31 +05:30
parent b83b5f8a07
commit 10f76ef49f
117 changed files with 25370 additions and 0 deletions

View file

@ -0,0 +1,10 @@
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 &rarr;
</Link>
}