Skip to content

Commit 34ef7d3

Browse files
committed
chore: merge main and resolve conflicts in skills module
2 parents f997890 + 010aba2 commit 34ef7d3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+4755
-45
lines changed

apps/web-roo-code/src/app/linear/page.tsx

Lines changed: 413 additions & 0 deletions
Large diffs are not rendered by default.

apps/web-roo-code/src/components/chromes/nav-bar.tsx

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ import { ScrollButton } from "@/components/ui"
1515
import ThemeToggle from "@/components/chromes/theme-toggle"
1616
import { Brain, ChevronDown, Cloud, Puzzle, Slack, X } from "lucide-react"
1717

18+
function LinearIcon({ className }: { className?: string }) {
19+
return (
20+
<svg className={className} viewBox="0 0 100 100" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
21+
<path d="M1.22541 61.5228c-.2225-.9485.90748-1.5459 1.59638-.857L39.3342 97.1782c.6889.6889.0915 1.8189-.857 1.5964C20.0515 94.4522 5.54779 79.9485 1.22541 61.5228ZM.00189135 46.8891c-.01764375.2833.08887215.5599.28957165.7606L52.3503 99.7085c.2007.2007.4773.3075.7606.2896 2.3692-.1476 4.6938-.46 6.9624-.9259.7645-.157 1.0301-1.0963.4782-1.6481L2.57595 39.4485c-.55186-.5519-1.49117-.2863-1.648174.4782-.465915 2.2686-.77832 4.5932-.92588465 6.9624ZM4.21093 29.7054c-.16649.3738-.08169.8106.20765 1.1l64.77602 64.776c.2894.2894.7262.3742 1.1.2077 1.7861-.7956 3.5171-1.6927 5.1855-2.684.5521-.328.6373-1.0867.1832-1.5407L8.43566 24.3367c-.45409-.4541-1.21271-.3689-1.54074.1832-.99132 1.6684-1.88843 3.3994-2.68399 5.1855ZM12.6587 18.074c-.3701-.3701-.393-.9637-.0443-1.3541C21.7795 6.45931 35.1114 0 49.9519 0 77.5927 0 100 22.4073 100 50.0481c0 14.8405-6.4593 28.1724-16.7199 37.3375-.3903.3487-.984.3258-1.3542-.0443L12.6587 18.074Z" />
22+
</svg>
23+
)
24+
}
25+
1826
interface NavBarProps {
1927
stars: string | null
2028
downloads: string | null
@@ -60,6 +68,12 @@ export function NavBar({ stars, downloads }: NavBarProps) {
6068
<Slack className="size-3 inline mr-2 -mt-0.5" />
6169
Roo Code for Slack
6270
</Link>
71+
<Link
72+
href="/linear"
73+
className="block px-4 py-2 text-sm transition-colors hover:bg-accent hover:text-foreground">
74+
<LinearIcon className="size-3 inline mr-2 -mt-0.5" />
75+
Roo Code for Linear
76+
</Link>
6377
<Link
6478
href="/provider"
6579
className="block px-4 py-2 text-sm transition-colors hover:bg-accent hover:text-foreground">
@@ -202,6 +216,12 @@ export function NavBar({ stars, downloads }: NavBarProps) {
202216
onClick={() => setIsMenuOpen(false)}>
203217
Roo Code for Slack
204218
</Link>
219+
<Link
220+
href="/linear"
221+
className="block w-full p-5 py-3 text-left text-foreground active:opacity-50"
222+
onClick={() => setIsMenuOpen(false)}>
223+
Roo Code for Linear
224+
</Link>
205225
<Link
206226
href="/provider"
207227
className="block w-full p-5 py-3 text-left text-foreground active:opacity-50"

0 commit comments

Comments
 (0)