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
21 changes: 21 additions & 0 deletions webview-ui/src/components/chat/Announcement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,17 @@ const Announcement = ({ hideAnnouncement }: AnnouncementProps) => {
</div>
</div>

{/* Careers Section */}
<div className="mt-4 text-sm text-center">
<Trans
i18nKey="chat:announcement.careers"
components={{
careersLink: <CareersLink />,
}}
/>
</div>

<div className="mt-2 text-sm text-center">
<Trans
i18nKey="chat:announcement.socialLinks"
components={{
Expand Down Expand Up @@ -135,4 +145,15 @@ const RedditLink = () => (
</VSCodeLink>
)

const CareersLink = () => (
<VSCodeLink
href="https://careers.roocode.com"
onClick={(e) => {
e.preventDefault()
vscode.postMessage({ type: "openExternal", url: "https://careers.roocode.com" })
}}>
We&apos;re hiring
</VSCodeLink>
)

export default memo(Announcement)
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/en/chat.json
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@
"description": "It runs Roo in the cloud, giving extremely high quality code reviews instantly. We've been using it heavily to build Roo and now it's also available to the community.",
"createAgentButton": "Try out PR Reviewer"
},
"careers": "<careersLink>We're hiring</careersLink>! Join the team building the future of AI-powered development.",
"socialLinks": "Join us on <xLink>X</xLink>, <discordLink>Discord</discordLink>, or <redditLink>r/RooCode</redditLink> 🚀"
},
"reasoning": {
Expand Down
Loading