Skip to content
Merged
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
12 changes: 6 additions & 6 deletions src/pages/community/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const contributionSections: ContributionSection[] = [
],
links: [
{ text: 'GitHub', url: 'https://github.com/recodehive' },
{ text: 'GitLab', url: '/community' }
{ text: 'GitLab', url: 'https://gitlab.com' }
],
color: '#8b5cf6'
},
Expand Down Expand Up @@ -74,8 +74,8 @@ const contributionSections: ContributionSection[] = [
'Share knowledge and insights'
],
links: [
{ text: 'Discord', url: '/community' },
{ text: 'Slack', url: '/community' }
{ text: 'Discord', url: 'https://discord.gg/Yxv9RA3r' },
{ text: 'Slack', url: 'https://slack.com' }
],
color: '#10b981'
},
Expand All @@ -90,8 +90,8 @@ const contributionSections: ContributionSection[] = [
'Pick a task or area you\'re excited about!'
],
links: [
{ text: 'Discord', url: '/community' },
{ text: 'Slack', url: '/community' },
{ text: 'Discord', url: 'https://discord.gg/Yxv9RA3r' },
{ text: 'Slack', url: 'https://slack.com' },
{ text: 'GitHub', url: 'https://github.com/recodehive' }
],
color: '#6366f1'
Expand All @@ -108,7 +108,7 @@ const tableOfContents = [
{ id: 'thank-you', title: 'Thank You', icon: '💚' }
];

export default function CommunityPage(): JSX.Element {
export default function CommunityPage(): React.ReactElement {
const [activeSections, setActiveSections] = useState<string[]>(['how-you-can-contribute']);
const [selectedSection, setSelectedSection] = useState<string | null>(null);

Expand Down
Loading