Skip to content

Commit

Permalink
problem: no link to tg group
Browse files Browse the repository at this point in the history
  • Loading branch information
gsovereignty committed Aug 14, 2024
1 parent 253c7c2 commit 15ffdb1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/Menu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import Separator from '@/components/ui/separator/separator.svelte';
import { currentUser } from '@/stores/session';
import { GitBranch, HelpCircle, Mail, Package, Pyramid, Rocket, Users } from 'lucide-svelte';
import { GitAltBrand } from 'svelte-awesome-icons';
import { GitAltBrand, TelegramBrand } from 'svelte-awesome-icons';
let iconClass = 'h-5 w-5 md:h-4 md:w-4';
Expand Down Expand Up @@ -49,6 +49,10 @@
<GitAltBrand class={iconClass} />
Source
</a>
<a href="https://t.me/nostrocket" class={getClass('_')}>
<TelegramBrand class={iconClass} />
Telegram Group
</a>
<a href="{base}/help" class={getClass('help')}>
<HelpCircle class={iconClass} />
Help
Expand Down
5 changes: 5 additions & 0 deletions src/components/NotifyMe.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import { currentUser } from '@/stores/session';
import Login from './Login.svelte';
import { NDKPrivateKeySigner, NDKUser } from '@nostr-dev-kit/ndk';
import { TelegramBrand } from 'svelte-awesome-icons';
let email: string = '';
let fax: string = '';
Expand Down Expand Up @@ -122,6 +123,10 @@
<Button disabled={emailInValid} on:click={SubmitEmailAndSubscribe}
>{emailError ? emailError : "I'm lame, please email me with updates"}</Button
>
<Separator />
<a href="https://t.me/nostrocket" class="flex flex-nowrap">
<TelegramBrand class="mr-2" /> Join the Telegram Group
</a>
</Dialog.Header>
</Dialog.Content>
</Dialog.Root>

0 comments on commit 15ffdb1

Please sign in to comment.