Skip to content

Commit 0ac4505

Browse files
committed
feat: add We're hiring link to announcement modal
1 parent 59ab1f3 commit 0ac4505

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

webview-ui/src/components/chat/Announcement.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,17 @@ const Announcement = ({ hideAnnouncement }: AnnouncementProps) => {
8686
</div>
8787
</div>
8888

89+
{/* Careers Section */}
8990
<div className="mt-4 text-sm text-center">
91+
<Trans
92+
i18nKey="chat:announcement.careers"
93+
components={{
94+
careersLink: <CareersLink />,
95+
}}
96+
/>
97+
</div>
98+
99+
<div className="mt-2 text-sm text-center">
90100
<Trans
91101
i18nKey="chat:announcement.socialLinks"
92102
components={{
@@ -135,4 +145,15 @@ const RedditLink = () => (
135145
</VSCodeLink>
136146
)
137147

148+
const CareersLink = () => (
149+
<VSCodeLink
150+
href="https://careers.roocode.com"
151+
onClick={(e) => {
152+
e.preventDefault()
153+
vscode.postMessage({ type: "openExternal", url: "https://careers.roocode.com" })
154+
}}>
155+
We&apos;re hiring
156+
</VSCodeLink>
157+
)
158+
138159
export default memo(Announcement)

webview-ui/src/i18n/locales/en/chat.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,7 @@
317317
"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.",
318318
"createAgentButton": "Try out PR Reviewer"
319319
},
320+
"careers": "<careersLink>We're hiring</careersLink>! Join the team building the future of AI-powered development.",
320321
"socialLinks": "Join us on <xLink>X</xLink>, <discordLink>Discord</discordLink>, or <redditLink>r/RooCode</redditLink> 🚀"
321322
},
322323
"reasoning": {

0 commit comments

Comments
 (0)