diff --git a/web/app/(app)/dashboard/(components)/community-links.tsx b/web/app/(app)/dashboard/(components)/community-links.tsx index 506f3b8..525b0e8 100644 --- a/web/app/(app)/dashboard/(components)/community-links.tsx +++ b/web/app/(app)/dashboard/(components)/community-links.tsx @@ -1,12 +1,12 @@ import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { Button } from '@/components/ui/button' -import { Github, Heart, MessageSquare } from 'lucide-react' +import { Github, Heart, MessageSquare, Linkedin, Twitter } from 'lucide-react' import Link from 'next/link' import { ExternalLinks } from '@/config/external-links' export default function CommunityLinks() { return ( -
+
{/* One-time Donation @@ -74,6 +74,40 @@ export default function CommunityLinks() { + + + + X (Twitter) + + +

+ Follow us on X for the latest updates and announcements. +

+ + + +
+
+ + + + LinkedIn + + +

+ Connect with us on LinkedIn for updates and news. +

+ + + +
+
) } diff --git a/web/config/external-links.ts b/web/config/external-links.ts index a901530..1df952f 100644 --- a/web/config/external-links.ts +++ b/web/config/external-links.ts @@ -3,4 +3,6 @@ export const ExternalLinks = { github: 'https://github.com/vernu/textbee', discord: 'https://discord.gg/d7vyfBpWbQ', polar: 'https://donate.textbee.dev', + twitter: 'https://x.com/textbeedotdev', + linkedin: 'https://www.linkedin.com/company/textbeedotdev', }