Skip to content

Commit a57b0b6

Browse files
dleffeldaniel-lxsmrubens
authored
feat: integrate security one-pager into website (#5234)
Co-authored-by: Daniel Riccio <[email protected]> Co-authored-by: Matt Rubens <[email protected]>
1 parent 1be6fce commit a57b0b6

File tree

4 files changed

+84
-1
lines changed

4 files changed

+84
-1
lines changed

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

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
import { Code, CheckCircle, Shield, Users, Zap, Workflow } from "lucide-react"
1+
import { Code, CheckCircle, Shield, Users, Zap, Workflow, Lock } from "lucide-react"
22

33
import { Button } from "@/components/ui"
44
import { AnimatedText } from "@/components/animated-text"
55
import { AnimatedBackground } from "@/components/homepage"
66
import { ContactForm } from "@/components/enterprise/contact-form"
7+
import { EXTERNAL_LINKS } from "@/lib/constants"
78

89
export default async function Enterprise() {
910
return (
@@ -385,6 +386,63 @@ export default async function Enterprise() {
385386
</div>
386387
</section>
387388

389+
{/* Security Hook Section */}
390+
<section className="py-16">
391+
<div className="container mx-auto px-4 sm:px-6 lg:px-8">
392+
<div className="rounded-lg border border-border bg-card p-8 shadow-sm">
393+
<div className="grid gap-8 md:grid-cols-2 md:items-center">
394+
<div>
395+
<div className="mb-4 inline-flex h-12 w-12 items-center justify-center rounded-full bg-blue-100 dark:bg-blue-900/20">
396+
<Shield className="h-6 w-6 text-blue-500" />
397+
</div>
398+
<h3 className="mb-4 text-2xl font-bold">Enterprise-Grade Security</h3>
399+
<p className="mb-6 text-muted-foreground">
400+
Built with security-first principles to meet stringent enterprise requirements while
401+
maintaining developer productivity.
402+
</p>
403+
<ul className="space-y-3">
404+
<li className="flex items-center space-x-3">
405+
<CheckCircle className="h-5 w-5 text-green-500" />
406+
<span>SOC 2 Type I Certified with Type II in observation</span>
407+
</li>
408+
<li className="flex items-center space-x-3">
409+
<CheckCircle className="h-5 w-5 text-green-500" />
410+
<span>End-to-end encryption for all data transmission</span>
411+
</li>
412+
<li className="flex items-center space-x-3">
413+
<CheckCircle className="h-5 w-5 text-green-500" />
414+
<span>Security-first architecture with explicit permissions</span>
415+
</li>
416+
<li className="flex items-center space-x-3">
417+
<CheckCircle className="h-5 w-5 text-green-500" />
418+
<span>Complete audit trails and compliance reporting</span>
419+
</li>
420+
<li className="flex items-center space-x-3">
421+
<CheckCircle className="h-5 w-5 text-green-500" />
422+
<span>Open-source transparency for security verification</span>
423+
</li>
424+
</ul>
425+
</div>
426+
<div className="flex flex-col items-center justify-center space-y-4">
427+
<div className="rounded-lg border border-border bg-secondary/50 p-6 text-center">
428+
<Lock className="mx-auto mb-3 h-12 w-12 text-blue-500" />
429+
<h4 className="mb-2 text-lg font-semibold">Security-First Design</h4>
430+
<p className="text-sm text-muted-foreground">
431+
Every feature built with enterprise security requirements in mind
432+
</p>
433+
</div>
434+
<Button size="lg" asChild className="w-full">
435+
<a href={EXTERNAL_LINKS.SECURITY} target="_blank" rel="noopener noreferrer">
436+
View Security Details
437+
<Shield className="ml-2 h-4 w-4" />
438+
</a>
439+
</Button>
440+
</div>
441+
</div>
442+
</div>
443+
</div>
444+
</section>
445+
388446
{/* CTA Section */}
389447
<section id="contact" className="bg-secondary/50 py-16">
390448
<div className="container mx-auto px-4 sm:px-6 lg:px-8">

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,15 @@ export function Footer() {
118118
Enterprise
119119
</Link>
120120
</li>
121+
<li>
122+
<a
123+
href={EXTERNAL_LINKS.SECURITY}
124+
target="_blank"
125+
rel="noopener noreferrer"
126+
className="text-sm leading-6 text-muted-foreground transition-colors hover:text-foreground">
127+
Security
128+
</a>
129+
</li>
121130
<li>
122131
<ScrollButton
123132
targetId="testimonials"

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ export function NavBar({ stars, downloads }: NavBarProps) {
6161
className="text-muted-foreground transition-transform duration-200 hover:scale-105 hover:text-foreground">
6262
Enterprise
6363
</Link>
64+
<a
65+
href={EXTERNAL_LINKS.SECURITY}
66+
target="_blank"
67+
rel="noopener noreferrer"
68+
className="text-muted-foreground transition-transform duration-200 hover:scale-105 hover:text-foreground">
69+
Security
70+
</a>
6471
<a
6572
href={EXTERNAL_LINKS.DOCUMENTATION}
6673
target="_blank"
@@ -142,6 +149,14 @@ export function NavBar({ stars, downloads }: NavBarProps) {
142149
onClick={() => setIsMenuOpen(false)}>
143150
Enterprise
144151
</Link>
152+
<a
153+
href={EXTERNAL_LINKS.SECURITY}
154+
target="_blank"
155+
rel="noopener noreferrer"
156+
className="w-full px-8 py-3 text-left text-sm font-medium text-foreground/80 transition-colors hover:bg-accent hover:text-foreground"
157+
onClick={() => setIsMenuOpen(false)}>
158+
Security
159+
</a>
145160
<a
146161
href={EXTERNAL_LINKS.DOCUMENTATION}
147162
target="_blank"

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export const EXTERNAL_LINKS = {
1616
INTEGRATIONS: "https://docs.roocode.com/community",
1717
TUTORIALS: "https://docs.roocode.com/tutorial-videos",
1818
MARKETPLACE: "https://marketplace.visualstudio.com/items?itemName=RooVeterinaryInc.roo-cline",
19+
SECURITY: "https://trust.roocode.com",
1920
}
2021

2122
export const INTERNAL_LINKS = {

0 commit comments

Comments
 (0)