Skip to content

Commit

Permalink
cahnge intro text
Browse files Browse the repository at this point in the history
  • Loading branch information
Zizwar committed Jun 13, 2023
1 parent 69aaa85 commit 5de267b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## `Roomy Prompt - ChatGPT Rooms`

A minimal chat platform template. It uses [Fresh](https://fresh.deno.dev) +
An intermediate AI chat room platform template. It uses [Fresh](https://fresh.deno.dev) +
[Supabase](https://supabase.io) + [twind](https://twind.dev) +
[BroadcastChannel API](https://developer.mozilla.org/en-US/docs/Web/API/Broadcast_Channel_API) + [OpenAI API](https://oepnai.com)
on Deno Deploy.
Expand Down
8 changes: 5 additions & 3 deletions routes/proomy/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export async function handler(
const url = new URL(req.url);
const code = url.searchParams.get("code");
if (!code) {
// return ctx.render(false);
return response;
// return ctx.render(false);
return response;
}

// const accessToken = await gitHubApi.getAccessToken(code);
Expand Down Expand Up @@ -78,7 +78,9 @@ export default function Main({ url, data }: PageProps<{ rooms: RoomView[] }>) {
<span class="block text-3xl font-bold text-black mb-3">
Roomy Prompt - ChatGPT Rooms
</span>
<span class="block text-lg -mb-1.5"></span>
<span class="block text-lg -mb-1.5">
An intermediate open-source AI chat room platform template.
</span>
</div>
{data ? (
<ul
Expand Down

0 comments on commit 5de267b

Please sign in to comment.