Skip to content

Commit 7e2d2a2

Browse files
authored
Add the support module to the issues page. (#70)
1 parent 7d7c318 commit 7e2d2a2

2 files changed

Lines changed: 13 additions & 2 deletions

File tree

src/components/support.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { onMount } from "solid-js";
2+
3+
export default function Support() {
4+
onMount(() => {
5+
import("@kixelated/hang/support/element");
6+
});
7+
8+
return <hang-support prop:show="full" prop:details={true} />;
9+
}

src/pages/issues.mdx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ layout: "@/layouts/global.astro"
33
title: Issues
44
---
55

6+
import Support from "@/components/support"
7+
68
# Issues
79

810
Yeah, so there's a lot of work to do.
@@ -14,6 +16,8 @@ But if you just want a Google Meet clone and want to do minimal work, then check
1416
This page is a summary of the major issues, updated periodically.
1517
If you want to help, jump in [Discord](https://discord.gg/FCYF3p99mr)!
1618

19+
<Support client:only="solid-js" />
20+
1721
## What works
1822
Before we give into despair, here's what does work:
1923

@@ -25,8 +29,6 @@ Before we give into despair, here's what does work:
2529
- **On-Demand**: No encoding (JS only) or networking until the first viewer requests a track.
2630
- **Integrations**: Gstreamer and ffmpeg (via stdin).
2731

28-
Now on to the issues.
29-
3032
## Networking
3133

3234
| name | description |

0 commit comments

Comments
 (0)