Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 24 additions & 8 deletions apps/docs/content/guides/realtime.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,32 @@ Supabase provides a globally distributed [Realtime](https://github.com/supabase/
{[
{
name: 'Multiplayer.dev',
description: 'Mouse movements and chat messages.',
description: 'Showcase application displaying cursor movements and chat messages using Broadcast.',
href: 'https://multiplayer.dev',
},
].map((x) => (
<div className="col-span-12" key={x.href}>
<Link href={x.href} passHref>
<GlassPanel title={x.name}>{x.description}</GlassPanel>
</Link>
</div>
))}
{
name: 'Chat',
description: 'Supabase UI chat component using Broadcast to send message between users.',
href: 'https://supabase.com/ui/docs/nextjs/realtime-chat'
},
{
name: 'Avatar Stack',
description: 'Supabase UI avatar stack component using Presence to track connected users.',
href: 'https://supabase.com/ui/docs/nextjs/realtime-avatar-stack'
},
{
name: 'Realtime Cursor',
description: "Supabase UI realtime cursor component using Broadcast to share users' cursors to build collaborative applications.",
href: 'https://supabase.com/ui/docs/nextjs/realtime-cursor'
}
].map((x) => (
<div className="col-span-6" key={x.href}>
<Link href={x.href} target="_blank" passHref>
<GlassPanel title={x.name}>{x.description}</GlassPanel>
</Link>
</div>
))}

</div>

## Resources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ export const RegionNode = ({ data }: any) => {
<img
alt="region icon"
className="w-5 rounded-sm"
src={`${BASE_PATH}/img/regions/${region.key}.svg`}
src={`${BASE_PATH}/img/regions/${region.region}.svg`}
/>
<p className="text-sm">{region.name}</p>
</div>
Expand Down
Loading