Skip to content
2 changes: 1 addition & 1 deletion components/buttons/SlackButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { IButtonDefaultProps } from '../../types/components/buttons/types';
import IconSlack from '../icons/Slack';
import Button from './Button';

interface ISlackButtonProps extends IButtonDefaultProps {}
interface ISlackButtonProps extends IButtonDefaultProps { }

/**
* @description The SlackButton component is a button that links to the AsyncAPI Slack channel.
Expand Down
6 changes: 3 additions & 3 deletions pages/[lang]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default function HomePage() {
<Paragraph className='mt-2'>{t('community.slackCTADesc')}</Paragraph>
</div>
<div className='mt-5 flex justify-center lg:justify-start'>
<Button className='w-full md:w-auto' text={t('community.slackCTABtn')} href='/slack-invite' />
<Button className='w-full md:w-auto' text={t('community.slackCTABtn')} href='https://www.asyncapi.com/slack-invite' />
</div>
</section>
</div>
Expand All @@ -118,14 +118,14 @@ export default function HomePage() {
<Paragraph className='mt-2'>
{t('community.meetingDesc')}

<TextLink href='/community/meetings'>{t('community.meetingLink')}</TextLink>
<TextLink href='https://www.asyncapi.com/community/meetings'>{t('community.meetingLink')}</TextLink>
</Paragraph>
<ul className='mt-5 justify-center md:flex'>
<li>
<GoogleCalendarButton href='https://calendar.google.com/calendar/u/3?cid=Y19xOXRzZWlnbG9tZHNqNm5qdWh2YnB0czExY0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t' />
</li>
<li>
<SubscribeButton href='/community/meetings' className='mt-2 md:ml-2 md:mt-0' />
<SubscribeButton href='https://www.asyncapi.com/community/meetings' className='mt-2 md:ml-2 md:mt-0' />
</li>
<li>
<ICSFileButton
Expand Down
Loading