Update src/app/security/page.tsx

This commit is contained in:
2026-03-22 14:22:59 +00:00
parent eb0a0101e5
commit 63ddffdf04

View File

@@ -11,17 +11,16 @@ import { Shield, Lock, AlertCircle, CheckCircle, HelpCircle, Zap } from "lucide-
export default function SecurityPage() {
const navItems = [
{ name: "Home", id: "home" },
{ name: "Platform", id: "platform" },
{ name: "Roles", id: "roles" },
{ name: "Security", id: "security" },
{ name: "Documentation", id: "documentation" },
{ name: "Home", id: "/" },
{ name: "Platform", id: "/platform" },
{ name: "Roles", id: "/roles" },
{ name: "Security", id: "/security" },
{ name: "Documentation", id: "/documentation" },
];
const footerColumns = [
{
title: "Platform",
items: [
title: "Platform", items: [
{ label: "Features", href: "/" },
{ label: "Roles & Access", href: "/roles" },
{ label: "Security", href: "/security" },
@@ -29,17 +28,15 @@ export default function SecurityPage() {
],
},
{
title: "Resources",
items: [
{ label: "Documentation", href: "/" },
title: "Resources", items: [
{ label: "Documentation", href: "/documentation" },
{ label: "API Reference", href: "/" },
{ label: "User Guide", href: "/" },
{ label: "Blog", href: "/" },
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/" },
{ label: "Contact", href: "/" },
{ label: "Careers", href: "/" },
@@ -47,8 +44,7 @@ export default function SecurityPage() {
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "/" },
{ label: "Terms of Service", href: "/" },
{ label: "Compliance", href: "/" },
@@ -75,9 +71,7 @@ export default function SecurityPage() {
brandName="ForexTrade Pro"
navItems={navItems}
button={{
text: "Get Started",
href: "/login",
}}
text: "Get Started", href: "/login"}}
/>
</div>
@@ -95,26 +89,11 @@ export default function SecurityPage() {
animationType="slide-up"
products={[
{
id: "security-1",
name: "Advanced Encryption",
price: "Enterprise Grade",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BItPQKOSJRUaIXYCWE8VxVsRVJ/advanced-security-features-interface-sho-1774189059693-7ad81970.png?_wi=4",
imageAlt: "Encryption and security features",
},
id: "security-1", name: "Advanced Encryption", price: "Enterprise Grade", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BItPQKOSJRUaIXYCWE8VxVsRVJ/advanced-security-features-interface-sho-1774189059693-7ad81970.png?_wi=4", imageAlt: "Encryption and security features"},
{
id: "security-2",
name: "Compliance Monitoring",
price: "Real-Time Tracking",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BItPQKOSJRUaIXYCWE8VxVsRVJ/compliance-and-regulatory-security-dashb-1774189060211-cf4022ef.png?_wi=3",
imageAlt: "Compliance and regulatory features",
},
id: "security-2", name: "Compliance Monitoring", price: "Real-Time Tracking", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BItPQKOSJRUaIXYCWE8VxVsRVJ/compliance-and-regulatory-security-dashb-1774189060211-cf4022ef.png?_wi=3", imageAlt: "Compliance and regulatory features"},
{
id: "security-3",
name: "Disaster Recovery",
price: "99.9% Uptime SLA",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BItPQKOSJRUaIXYCWE8VxVsRVJ/data-protection-and-backup-infrastructur-1774189060085-fd6c5abf.png?_wi=3",
imageAlt: "Backup and recovery infrastructure",
},
id: "security-3", name: "Disaster Recovery", price: "99.9% Uptime SLA", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BItPQKOSJRUaIXYCWE8VxVsRVJ/data-protection-and-backup-infrastructur-1774189060085-fd6c5abf.png?_wi=3", imageAlt: "Backup and recovery infrastructure"},
]}
/>
</div>
@@ -131,43 +110,29 @@ export default function SecurityPage() {
features={[
{
icon: Shield,
title: "End-to-End Encryption",
description: "All data transmission encrypted with TLS 1.3, protecting sensitive trading information and user credentials from unauthorized access.",
},
title: "End-to-End Encryption", description: "All data transmission encrypted with TLS 1.3, protecting sensitive trading information and user credentials from unauthorized access."},
{
icon: CheckCircle,
title: "Multi-Factor Authentication",
description: "Mandatory MFA for all user roles, combining passwords, biometrics, and hardware tokens for maximum account security.",
},
title: "Multi-Factor Authentication", description: "Mandatory MFA for all user roles, combining passwords, biometrics, and hardware tokens for maximum account security."},
{
icon: Lock,
title: "Access Control Lists",
description: "Granular ACL system manages role-based permissions with principle of least privilege, restricting access to only necessary functions.",
},
title: "Access Control Lists", description: "Granular ACL system manages role-based permissions with principle of least privilege, restricting access to only necessary functions."},
{
icon: AlertCircle,
title: "Real-Time Threat Detection",
description: "Advanced monitoring systems detect suspicious activities, anomalous patterns, and potential security threats in real-time.",
},
title: "Real-Time Threat Detection", description: "Advanced monitoring systems detect suspicious activities, anomalous patterns, and potential security threats in real-time."},
{
icon: Zap,
title: "Automated Security Patching",
description: "Continuous vulnerability scanning and automated patching ensures your system remains protected against emerging threats.",
},
title: "Automated Security Patching", description: "Continuous vulnerability scanning and automated patching ensures your system remains protected against emerging threats."},
{
icon: CheckCircle,
title: "Compliance Certification",
description: "Full compliance with ISO 27001, SOC 2 Type II, and international regulatory standards for financial institutions.",
},
title: "Compliance Certification", description: "Full compliance with ISO 27001, SOC 2 Type II, and international regulatory standards for financial institutions."},
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
buttons={[
{
text: "View Security Details",
href: "/security",
},
text: "View Security Details", href: "/security"},
]}
buttonAnimation="slide-up"
/>
@@ -187,35 +152,17 @@ export default function SecurityPage() {
faqsAnimation="slide-up"
faqs={[
{
id: "faq-sec-1",
title: "What encryption standards do you use?",
content: "We employ AES-256 encryption for data at rest and TLS 1.3 for data in transit. All encryption keys are managed in a hardware security module (HSM) with strict access controls. Regular encryption audits ensure compliance with NIST standards.",
},
id: "faq-sec-1", title: "What encryption standards do you use?", content: "We employ AES-256 encryption for data at rest and TLS 1.3 for data in transit. All encryption keys are managed in a hardware security module (HSM) with strict access controls. Regular encryption audits ensure compliance with NIST standards."},
{
id: "faq-sec-2",
title: "How do you ensure compliance with regulatory requirements?",
content: "Our system is designed with compliance-by-default architecture. The Compliance Officer role monitors all activities against regulatory requirements in real-time. We maintain comprehensive audit logs for all transactions and user actions, enabling full regulatory reporting.",
},
id: "faq-sec-2", title: "How do you ensure compliance with regulatory requirements?", content: "Our system is designed with compliance-by-default architecture. The Compliance Officer role monitors all activities against regulatory requirements in real-time. We maintain comprehensive audit logs for all transactions and user actions, enabling full regulatory reporting."},
{
id: "faq-sec-3",
title: "What is your disaster recovery procedure?",
content: "We maintain geographically redundant data centers with automatic failover. Backups occur every hour, stored both locally and in remote locations. Our RTO is 15 minutes and RPO is 1 hour, ensuring minimal data loss and business continuity.",
},
id: "faq-sec-3", title: "What is your disaster recovery procedure?", content: "We maintain geographically redundant data centers with automatic failover. Backups occur every hour, stored both locally and in remote locations. Our RTO is 15 minutes and RPO is 1 hour, ensuring minimal data loss and business continuity."},
{
id: "faq-sec-4",
title: "How are security incidents handled?",
content: "We have a 24/7 Security Operations Center (SOC) monitoring for threats. Incidents are immediately investigated, contained, and escalated. Clients are notified within 2 hours of confirmed incidents affecting their data.",
},
id: "faq-sec-4", title: "How are security incidents handled?", content: "We have a 24/7 Security Operations Center (SOC) monitoring for threats. Incidents are immediately investigated, contained, and escalated. Clients are notified within 2 hours of confirmed incidents affecting their data."},
{
id: "faq-sec-5",
title: "Can I audit the system's security?",
content: "Yes, regular third-party security audits are conducted. Authorized auditors can review logs, access controls, and configurations. We provide detailed compliance reports and SOC 2 Type II attestations.",
},
id: "faq-sec-5", title: "Can I audit the system's security?", content: "Yes, regular third-party security audits are conducted. Authorized auditors can review logs, access controls, and configurations. We provide detailed compliance reports and SOC 2 Type II attestations."},
{
id: "faq-sec-6",
title: "What happens to my data if I leave the platform?",
content: "Upon request, all your data is securely deleted within 30 days. We provide data export options in standard formats before deletion. All deletion processes are logged and verified for compliance.",
},
id: "faq-sec-6", title: "What happens to my data if I leave the platform?", content: "Upon request, all your data is securely deleted within 30 days. We provide data export options in standard formats before deletion. All deletion processes are logged and verified for compliance."},
]}
/>
</div>