diff --git a/src/app/page.tsx b/src/app/page.tsx index 25fa826..b473cb3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -6,17 +6,20 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating import FeatureBento, { type FeatureCard } from "@/components/sections/feature/FeatureBento"; import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import PricingCardEight from "@/components/sections/pricing/PricingCardEight"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import ContactCenter from "@/components/sections/contact/ContactCenter"; -import { Zap, Shield, Rocket, Target, Sparkles, Crown, Mail, Users, Layers, Code } from "lucide-react"; +import ContactForm from "@/components/form/ContactForm"; +import FaqSplitText from "@/components/sections/faq/FaqSplitText"; +import { Zap, Shield, Rocket, Target, Sparkles, Crown, Mail, Users, Layers, Code, Star, Camera, MessageSquare } from "lucide-react"; export default function SaasTemplatePage() { const navItems = [ { name: "Features", id: "features" }, + { name: "Testimonials", id: "testimonials" }, { name: "Pricing", id: "pricing" }, - { name: "About", id: "about" }, + { name: "FAQ", id: "faq" }, { name: "Contact", id: "contact" }, ]; @@ -28,226 +31,48 @@ export default function SaasTemplatePage() { ]; const features: FeatureCard[] = [ - { - bentoComponent: "globe", - title: "Global Reach", - description: "Connect with users worldwide through our distributed infrastructure", - }, - { - bentoComponent: "marquee", - variant: "text", - centerIcon: Zap, - texts: ["Fast", "Reliable", "Secure", "Scalable", "Modern"], - title: "Built for Speed", - description: "Lightning fast performance with optimized delivery", - }, - { - bentoComponent: "3d-stack-cards", - items: [ - { icon: Shield, title: "Security", subtitle: "Enterprise-grade", detail: "Bank-level encryption" }, - { icon: Rocket, title: "Performance", subtitle: "99.9% uptime", detail: "Always available" }, - { icon: Target, title: "Accuracy", subtitle: "100% reliable", detail: "Data you can trust" }, - ], - title: "Built for Scale", - description: "Deploy to any region with automatic failover support", - } + { 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", items: [{ icon: Shield, title: "Security", subtitle: "Bank-level" }], title: "Scaleable", description: "Reliable infrastructure" } ]; return ( - - console.log("Get Started clicked"), - }, - { - text: "Learn More", - onClick: () => console.log("Learn More clicked"), - }, - ]} - marqueeItems={[ - { type: "text-icon", text: "Lightning Fast", icon: Zap }, - { type: "text-icon", text: "Enterprise Security", icon: Shield }, - { type: "text-icon", text: "99.9% Uptime", icon: Rocket }, - { type: "text-icon", text: "Precision Targeting", icon: Target }, - { type: "text-icon", text: "AI Powered", icon: Sparkles }, - ]} - /> - - - - console.log("Starter clicked") }, - ], - features: [ - "Up to 5 projects", - "Basic analytics", - "24/7 email support", - "API access", - ], - }, - { - id: "pro", - badge: "Pro", - badgeIcon: Rocket, - price: "$49/mo", - subtitle: "For growing teams", - buttons: [ - { text: "Get Started", onClick: () => console.log("Pro clicked") }, - ], - features: [ - "Unlimited projects", - "Advanced analytics", - "Priority support", - "Custom integrations", - "Team collaboration", - ], - }, - { - id: "enterprise", - badge: "Enterprise", - badgeIcon: Crown, - price: "$99/mo", - subtitle: "For large organizations", - buttons: [ - { text: "Contact Sales", onClick: () => console.log("Enterprise clicked") }, - ], - features: [ - "Everything in Pro", - "Dedicated account manager", - "Custom SLA", - "On-premise deployment", - "Advanced security", - ], - }, - ]} - /> - console.log("Email submitted:", email)} - /> - + + + +
+ +
+ +
+ +
+
+ console.log("Form submitted", email)} + /> +
+
); -} +} \ No newline at end of file