From 6119515c487781c759d8e60d91b01dcf025c6dca Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 07:35:36 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ab8ba49..627e9a8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,7 +6,7 @@ import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboa import FeatureBento from "@/components/sections/feature/FeatureBento"; import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Sparkles, Zap, Globe, TrendingUp } from "lucide-react"; +import { Sparkles, Zap, Globe, TrendingUp, Shield, Lock, Cpu } from "lucide-react"; export default function HomePage() { const navItems = [ @@ -59,6 +59,17 @@ export default function HomePage() { { icon: TrendingUp, label: "Growth", value: "300%" }, ], }, + { + title: "Enterprise Security", description: "Bank-grade security with advanced encryption and compliance", bentoComponent: "3d-stack-cards" as const, + items: [ + { icon: Shield, title: "End-to-End", subtitle: "Encryption", detail: "Military-grade protection" }, + { icon: Lock, title: "Zero Trust", subtitle: "Architecture", detail: "Never trust, always verify" }, + { icon: Cpu, title: "Compliance", subtitle: "Standard", detail: "SOC 2, GDPR, ISO 27001" }, + ], + }, + { + title: "Global Integration", description: "Connect seamlessly with tools and platforms worldwide", bentoComponent: "map" as const, + }, ]; const testimonials = [ @@ -174,7 +185,8 @@ export default function HomePage() {