Skip to content

Commit b410730

Browse files
committed
feat: integrate security one-pager into website
- Add comprehensive /security page with all security content - Update navigation to include Security link in main nav and footer - Add security hook section to enterprise page - Fix inappropriate contact section (remove fake security team/phone) - Correct inaccurate 'zero-trust architecture' claims to 'security-first architecture' - Use realistic contact information ([email protected]) - Maintain all genuine security features while improving accuracy
1 parent b45252d commit b410730

File tree

5 files changed

+546
-1
lines changed

5 files changed

+546
-1
lines changed

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

Lines changed: 60 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
import { Code, CheckCircle, Shield, Users, Zap, Workflow } from "lucide-react"
1+
import { Code, CheckCircle, Shield, Users, Zap, Workflow, Lock } from "lucide-react"
2+
import Link from "next/link"
23

34
import { Button } from "@/components/ui"
45
import { AnimatedText } from "@/components/animated-text"
56
import { AnimatedBackground } from "@/components/homepage"
67
import { ContactForm } from "@/components/enterprise/contact-form"
8+
import { INTERNAL_LINKS } from "@/lib/constants"
79

810
export default async function Enterprise() {
911
return (
@@ -385,6 +387,63 @@ export default async function Enterprise() {
385387
</div>
386388
</section>
387389

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

0 commit comments

Comments
 (0)