Merge version_2 into main #5

Merged
bender merged 1 commits from version_2 into main 2026-04-06 21:57:00 +00:00

View File

@@ -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 (