diff --git a/src/app/page.tsx b/src/app/page.tsx index 4ec4f71..9f7f4ed 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,7 @@ import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import ContactForm from "@/components/form/ContactForm"; import FaqSplitText from "@/components/sections/faq/FaqSplitText"; -import { Zap, Shield, Sparkles, Mail } from "lucide-react"; +import { Zap, Shield, Sparkles, Mail, Lock, BarChart } from "lucide-react"; export default function SaasTemplatePage() { const navItems = [ @@ -31,7 +31,16 @@ export default function SaasTemplatePage() { const features: FeatureCard[] = [ { bentoComponent: "globe", title: "Global Reach", description: "Connect with users worldwide" }, { bentoComponent: "marquee", variant: "text", centerIcon: Zap, texts: ["Fast", "Reliable"], title: "Built for Speed", description: "Lightning fast delivery" }, - { bentoComponent: "3d-stack-cards", title: "Scaleable", description: "Reliable infrastructure", items: [{ icon: Shield, title: "Security", subtitle: "Bank-level", detail: "256-bit encryption" }] } + { + bentoComponent: "3d-stack-cards", + title: "Scaleable", + description: "Reliable infrastructure", + items: [ + { icon: Shield, title: "Security", subtitle: "Bank-level", detail: "256-bit encryption" }, + { icon: Lock, title: "Privacy", subtitle: "User-focused", detail: "Zero data sharing" }, + { icon: BarChart, title: "Analytics", subtitle: "Real-time", detail: "Advanced dashboarding" } + ] + } ]; return (