Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
41 changes: 36 additions & 5 deletions apps/web-roo-code/src/components/chromes/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ import { useState, useRef, useEffect } from "react"
import Link from "next/link"
import Image from "next/image"
import { ChevronDown } from "lucide-react"
import { RxGithubLogo, RxDiscordLogo } from "react-icons/rx"
import { FaReddit } from "react-icons/fa6"
import { FaBluesky, FaDiscord, FaGithub, FaLinkedin, FaReddit, FaTiktok, FaXTwitter } from "react-icons/fa6"

import { EXTERNAL_LINKS, INTERNAL_LINKS } from "@/lib/constants"
import { useLogoSrc } from "@/lib/hooks/use-logo-src"
Expand Down Expand Up @@ -40,21 +39,21 @@ export function Footer() {
<p className="max-w-md text-sm leading-6 text-muted-foreground md:pr-16 lg:pr-32">
Empowering developers to build better software faster with AI-powered tools and insights.
</p>
<div className="flex space-x-5">
<div className="flex space-x-4">
<a
href={EXTERNAL_LINKS.GITHUB}
target="_blank"
rel="noopener noreferrer"
className="text-muted-foreground transition-colors hover:text-foreground">
<RxGithubLogo className="h-6 w-6" />
<FaGithub className="h-6 w-6" />
<span className="sr-only">GitHub</span>
</a>
<a
href={EXTERNAL_LINKS.DISCORD}
target="_blank"
rel="noopener noreferrer"
className="text-muted-foreground transition-colors hover:text-foreground">
<RxDiscordLogo className="h-6 w-6" />
<FaDiscord className="h-6 w-6" />
<span className="sr-only">Discord</span>
</a>
<a
Expand All @@ -65,6 +64,38 @@ export function Footer() {
<FaReddit className="h-6 w-6" />
<span className="sr-only">Reddit</span>
</a>
<a
href={EXTERNAL_LINKS.X}
target="_blank"
rel="noopener noreferrer"
className="text-muted-foreground transition-colors hover:text-foreground">
<FaXTwitter className="h-6 w-6" />
<span className="sr-only">X</span>
</a>
<a
href={EXTERNAL_LINKS.LINKEDIN}
target="_blank"
rel="noopener noreferrer"
className="text-muted-foreground transition-colors hover:text-foreground">
<FaLinkedin className="h-6 w-6" />
<span className="sr-only">LinkedIn</span>
</a>
<a
href={EXTERNAL_LINKS.TIKTOK}
target="_blank"
rel="noopener noreferrer"
className="text-muted-foreground transition-colors hover:text-foreground">
<FaTiktok className="h-6 w-6" />
<span className="sr-only">TikTok</span>
</a>
<a
href={EXTERNAL_LINKS.BLUESKY}
target="_blank"
rel="noopener noreferrer"
className="text-muted-foreground transition-colors hover:text-foreground">
<FaBluesky className="h-6 w-6" />
<span className="sr-only">Bluesky</span>
</a>
</div>
</div>

Expand Down
6 changes: 5 additions & 1 deletion apps/web-roo-code/src/lib/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
export const EXTERNAL_LINKS = {
GITHUB: "https://github.com/RooVetGit/Roo-Code",
GITHUB: "https://github.com/RooCodeInc/Roo-Code",
DISCORD: "https://discord.gg/roocode",
REDDIT: "https://reddit.com/r/RooCode",
X: "https://x.com/roo_code",
LINKEDIN: "https://www.linkedin.com/company/roo-code",
TIKTOK: "https://www.tiktok.com/@roo.code",
BLUESKY: "https://bsky.app/profile/roocode.bsky.social",
DOCUMENTATION: "https://docs.roocode.com",
CAREERS: "https://careers.roocode.com",
ISSUES: "https://github.com/RooVetGit/Roo-Code/issues",
Expand Down