Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit 6cd42eb

Browse files
committed
more footer
1 parent 26e5278 commit 6cd42eb

1 file changed

Lines changed: 0 additions & 44 deletions

File tree

  • apps/web-roo-code/src/components/chromes

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

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ 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 { useTheme } from "next-themes"
87

98
import { EXTERNAL_LINKS, INTERNAL_LINKS } from "@/lib/constants"
109
import { useLogoSrc } from "@/lib/hooks/use-logo-src"
@@ -14,7 +13,6 @@ export function Footer() {
1413
const [privacyDropdownOpen, setPrivacyDropdownOpen] = useState(false)
1514
const dropdownRef = useRef<HTMLDivElement>(null)
1615
const logoSrc = useLogoSrc()
17-
const { resolvedTheme } = useTheme()
1816

1917
// Close dropdown when clicking outside
2018
useEffect(() => {
@@ -41,21 +39,6 @@ export function Footer() {
4139
<p className="max-w-md text-sm leading-6 text-muted-foreground md:pr-16 lg:pr-32">
4240
Empowering developers to build better software faster with AI-powered tools and insights.
4341
</p>
44-
45-
{/* Made with Roo Code */}
46-
<a
47-
href="https://roocode.com"
48-
target="_blank"
49-
rel="noopener noreferrer"
50-
className="inline-flex items-center space-x-2 group">
51-
<Image
52-
src={resolvedTheme === "light" ? "/RooCode-Badge-blk.svg" : "/RooCode-Badge-white.svg"}
53-
alt="Made with Roo Code"
54-
width={120}
55-
height={40}
56-
className="h-8 w-auto opacity-70 transition-opacity group-hover:opacity-100"
57-
/>
58-
</a>
5942
</div>
6043

6144
<div className="mt-16 grid grid-cols-2 gap-8 xl:col-span-2 xl:mt-0">
@@ -258,33 +241,6 @@ export function Footer() {
258241
X / Twitter
259242
</a>
260243
</li>
261-
<li>
262-
<a
263-
href={EXTERNAL_LINKS.LINKEDIN}
264-
target="_blank"
265-
rel="noopener noreferrer"
266-
className="text-sm leading-6 text-muted-foreground transition-colors hover:text-foreground">
267-
LinkedIn
268-
</a>
269-
</li>
270-
<li>
271-
<a
272-
href={EXTERNAL_LINKS.BLUESKY}
273-
target="_blank"
274-
rel="noopener noreferrer"
275-
className="text-sm leading-6 text-muted-foreground transition-colors hover:text-foreground">
276-
Bluesky
277-
</a>
278-
</li>
279-
<li>
280-
<a
281-
href={EXTERNAL_LINKS.TIKTOK}
282-
target="_blank"
283-
rel="noopener noreferrer"
284-
className="text-sm leading-6 text-muted-foreground transition-colors hover:text-foreground">
285-
TikTok
286-
</a>
287-
</li>
288244
<li>
289245
<a
290246
href={EXTERNAL_LINKS.YOUTUBE}

0 commit comments

Comments
 (0)