Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add discord link on hero and footer #844

Merged
merged 1 commit into from
Nov 22, 2024
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
7 changes: 7 additions & 0 deletions frontend/components/HomepageHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ export function HomepageHero(
<a class="underline text-sm relative z-10" href="#why-jsr">
Why JSR?
</a>
<span class="w-px h-[1em] bg-jsr-cyan-200"></span>
<a
class="underline text-sm relative z-10"
href="https://discord.gg/hMqvhAn9xG"
>
Discord
</a>
</div>
</div>
<div class="w-full md:w-3/4 relative z-20">
Expand Down
7 changes: 7 additions & 0 deletions frontend/routes/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ export default function Layout(
class="text-jsr-cyan-700 hover:text-blue-400 underline"
>
<span>GitHub</span>
</a>{" "}
-{" "}
<a
href="https://discord.gg/hMqvhAn9xG"
class="text-jsr-cyan-700 hover:text-blue-400 underline"
>
<span>Discord</span>
</a>
{state.span?.isSampled ? ` — x-deno-ray: ${state.span.traceId}` : null}
</footer>
Expand Down
Loading