diff --git a/apps/web-roo-code/src/app/privacy/page.tsx b/apps/web-roo-code/src/app/privacy/page.tsx index 7db1bbd17b..ab9962cdfa 100644 --- a/apps/web-roo-code/src/app/privacy/page.tsx +++ b/apps/web-roo-code/src/app/privacy/page.tsx @@ -22,7 +22,7 @@ export default function Privacy() { marketing website. For details on how your data is handled within the Roo Code extension itself, please refer to our separate{" "} @@ -161,7 +161,7 @@ export default function Privacy() { By using the Roo Code marketing landing page, you agree to this Privacy Policy. If you use the Roo Code extension, please see our separate{" "} diff --git a/apps/web-roo-code/src/components/chromes/footer.tsx b/apps/web-roo-code/src/components/chromes/footer.tsx index 24f2de59cf..850f5f3d3e 100644 --- a/apps/web-roo-code/src/components/chromes/footer.tsx +++ b/apps/web-roo-code/src/components/chromes/footer.tsx @@ -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" @@ -40,13 +39,13 @@ export function Footer() {

Empowering developers to build better software faster with AI-powered tools and insights.

-
+
- + GitHub - + Discord Reddit + + + X + + + + LinkedIn + + + + TikTok + + + + Bluesky +
diff --git a/apps/web-roo-code/src/components/chromes/stats-display.tsx b/apps/web-roo-code/src/components/chromes/stats-display.tsx index 452cb34f16..9d72654f5e 100644 --- a/apps/web-roo-code/src/components/chromes/stats-display.tsx +++ b/apps/web-roo-code/src/components/chromes/stats-display.tsx @@ -10,7 +10,7 @@ export default async function StatsDisplay() { return ( <> diff --git a/apps/web-roo-code/src/lib/constants.ts b/apps/web-roo-code/src/lib/constants.ts index c324e7139e..9c291941c6 100644 --- a/apps/web-roo-code/src/lib/constants.ts +++ b/apps/web-roo-code/src/lib/constants.ts @@ -1,14 +1,18 @@ 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", - FEATURE_REQUESTS: "https://github.com/RooVetGit/Roo-Code/discussions/categories/feature-requests", - COMMUNITY: "https://github.com/RooVetGit/Roo-Code/discussions", - CHANGELOG: "https://github.com/RooVetGit/Roo-Code/blob/main/CHANGELOG.md", - PRIVACY_POLICY_EXTENSION: "https://github.com/RooVetGit/Roo-Code/blob/main/PRIVACY.md", + ISSUES: "https://github.com/RooCodeInc/Roo-Code/issues", + FEATURE_REQUESTS: "https://github.com/RooCodeInc/Roo-Code/discussions/categories/feature-requests", + COMMUNITY: "https://github.com/RooCodeInc/Roo-Code/discussions", + CHANGELOG: "https://github.com/RooCodeInc/Roo-Code/blob/main/CHANGELOG.md", + PRIVACY_POLICY_EXTENSION: "https://github.com/RooCodeInc/Roo-Code/blob/main/PRIVACY.md", INTEGRATIONS: "https://docs.roocode.com/community", TUTORIALS: "https://docs.roocode.com/tutorial-videos", MARKETPLACE: "https://marketplace.visualstudio.com/items?itemName=RooVeterinaryInc.roo-cline", diff --git a/apps/web-roo-code/src/lib/stats.ts b/apps/web-roo-code/src/lib/stats.ts index 6f5ac668cd..4d43ca6ed6 100644 --- a/apps/web-roo-code/src/lib/stats.ts +++ b/apps/web-roo-code/src/lib/stats.ts @@ -1,6 +1,6 @@ export async function getGitHubStars() { try { - const res = await fetch("https://api.github.com/repos/RooVetGit/Roo-Code") + const res = await fetch("https://api.github.com/repos/RooCodeInc/Roo-Code") const data = await res.json() if (typeof data.stargazers_count !== "number") {