Skip to content

Commit f6906f6

Browse files
authored
Added YouTube to website footer (#5929)
1 parent 9014840 commit f6906f6

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

apps/web-roo-code/src/components/chromes/footer.tsx

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useState, useRef, useEffect } from "react"
44
import Link from "next/link"
55
import Image from "next/image"
66
import { ChevronDown } from "lucide-react"
7-
import { FaBluesky, FaDiscord, FaGithub, FaLinkedin, FaReddit, FaTiktok, FaXTwitter } from "react-icons/fa6"
7+
import { FaBluesky, FaDiscord, FaGithub, FaLinkedin, FaReddit, FaTiktok, FaXTwitter, FaYoutube } from "react-icons/fa6"
88

99
import { EXTERNAL_LINKS, INTERNAL_LINKS } from "@/lib/constants"
1010
import { useLogoSrc } from "@/lib/hooks/use-logo-src"
@@ -80,6 +80,14 @@ export function Footer() {
8080
<FaLinkedin className="h-6 w-6" />
8181
<span className="sr-only">LinkedIn</span>
8282
</a>
83+
<a
84+
href={EXTERNAL_LINKS.BLUESKY}
85+
target="_blank"
86+
rel="noopener noreferrer"
87+
className="text-muted-foreground transition-colors hover:text-foreground">
88+
<FaBluesky className="h-6 w-6" />
89+
<span className="sr-only">Bluesky</span>
90+
</a>
8391
<a
8492
href={EXTERNAL_LINKS.TIKTOK}
8593
target="_blank"
@@ -89,12 +97,12 @@ export function Footer() {
8997
<span className="sr-only">TikTok</span>
9098
</a>
9199
<a
92-
href={EXTERNAL_LINKS.BLUESKY}
100+
href={EXTERNAL_LINKS.YOUTUBE}
93101
target="_blank"
94102
rel="noopener noreferrer"
95103
className="text-muted-foreground transition-colors hover:text-foreground">
96-
<FaBluesky className="h-6 w-6" />
97-
<span className="sr-only">Bluesky</span>
104+
<FaYoutube className="h-6 w-6" />
105+
<span className="sr-only">YouTube</span>
98106
</a>
99107
</div>
100108
</div>

apps/web-roo-code/src/lib/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ export const EXTERNAL_LINKS = {
66
LINKEDIN: "https://www.linkedin.com/company/roo-code",
77
TIKTOK: "https://www.tiktok.com/@roo.code",
88
BLUESKY: "https://bsky.app/profile/roocode.bsky.social",
9+
YOUTUBE: "https://www.youtube.com/@RooCodeYT",
910
DOCUMENTATION: "https://docs.roocode.com",
1011
CAREERS: "https://careers.roocode.com",
1112
ISSUES: "https://github.com/RooCodeInc/Roo-Code/issues",

0 commit comments

Comments
 (0)