|
1 | | -import { Code, CheckCircle, Shield, Users, Zap, Workflow } from "lucide-react" |
| 1 | +import { Code, CheckCircle, Shield, Users, Zap, Workflow, Lock } from "lucide-react" |
2 | 2 |
|
3 | 3 | import { Button } from "@/components/ui" |
4 | 4 | import { AnimatedText } from "@/components/animated-text" |
5 | 5 | import { AnimatedBackground } from "@/components/homepage" |
6 | 6 | import { ContactForm } from "@/components/enterprise/contact-form" |
| 7 | +import { EXTERNAL_LINKS } from "@/lib/constants" |
7 | 8 |
|
8 | 9 | export default async function Enterprise() { |
9 | 10 | return ( |
@@ -385,6 +386,63 @@ export default async function Enterprise() { |
385 | 386 | </div> |
386 | 387 | </section> |
387 | 388 |
|
| 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 | + |
388 | 446 | {/* CTA Section */} |
389 | 447 | <section id="contact" className="bg-secondary/50 py-16"> |
390 | 448 | <div className="container mx-auto px-4 sm:px-6 lg:px-8"> |
|
0 commit comments