|
|
|
|
@@ -3,11 +3,10 @@
|
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
|
|
|
import PricingCardFive from "@/components/sections/pricing/PricingCardFive";
|
|
|
|
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
|
|
|
import { Zap } from "lucide-react";
|
|
|
|
|
import LegalSection from "@/components/legal/LegalSection";
|
|
|
|
|
|
|
|
|
|
export default function PricingPage() {
|
|
|
|
|
export default function LegalPage() {
|
|
|
|
|
return (
|
|
|
|
|
<ThemeProvider
|
|
|
|
|
defaultButtonVariant="text-stagger"
|
|
|
|
|
@@ -29,35 +28,40 @@ export default function PricingPage() {
|
|
|
|
|
{ name: "Work", id: "work" },
|
|
|
|
|
{ name: "Services", id: "services" },
|
|
|
|
|
{ name: "Pricing", id: "pricing" },
|
|
|
|
|
{ name: "Legal", id: "legal" },
|
|
|
|
|
{ name: "About", id: "about" },
|
|
|
|
|
{ name: "Contact", id: "contact" },
|
|
|
|
|
]}
|
|
|
|
|
button={{ text: "Get Started", href: "#contact" }}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="pricing" data-section="pricing">
|
|
|
|
|
<PricingCardFive
|
|
|
|
|
title="Transparent Pricing for Intelligent Systems"
|
|
|
|
|
description="Flexible tiers designed to scale with your operational automation needs."
|
|
|
|
|
animationType="slide-up"
|
|
|
|
|
textboxLayout="default"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
plans={[
|
|
|
|
|
{
|
|
|
|
|
id: "starter", tag: "Foundation", price: "$2,999", period: "/mo", description: "Core automation workflows and basic AI agent integration.", button: { text: "Choose Starter", href: "#contact" },
|
|
|
|
|
featuresTitle: "Key Features", features: ["3 Core Automations", "Email/Chat Support", "Basic Reporting", "Standard Integrations"],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "pro", tag: "Growth", tagIcon: Zap,
|
|
|
|
|
price: "$5,999", period: "/mo", description: "Advanced agent orchestrations and predictive workflows.", button: { text: "Choose Growth", href: "#contact" },
|
|
|
|
|
featuresTitle: "Key Features", features: ["10+ Core Automations", "Dedicated Agent Logic", "Priority Support", "Advanced Data Analytics"],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "enterprise", tag: "Scale", price: "Custom", period: "", description: "Enterprise-grade infrastructure for high-scale global operations.", button: { text: "Contact Sales", href: "#contact" },
|
|
|
|
|
featuresTitle: "Enterprise Power", features: ["Unlimited Automations", "Bespoke Model Training", "24/7 Priority Concierge", "Custom API Orchestration"],
|
|
|
|
|
},
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
<div id="legal" data-section="legal">
|
|
|
|
|
<LegalSection
|
|
|
|
|
layout="page"
|
|
|
|
|
title="Legal Disclosures & Terms"
|
|
|
|
|
sections={[
|
|
|
|
|
{
|
|
|
|
|
heading: "Operator Information",
|
|
|
|
|
content: { type: "paragraph", text: "Conflux Systems is operated by Conflux Digital Operations Ltd., registered in the state of Delaware." }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
heading: "Business Contact",
|
|
|
|
|
content: { type: "list", items: ["Address: 123 Automation Lane, Tech City, DE 19702", "Phone: +1 (888) 555-0199", "Email: operations@confluxsystems.ai"] }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
heading: "Services",
|
|
|
|
|
content: { type: "paragraph", text: "We provide bespoke AI engineering, autonomous agent deployment, and workflow automation services." }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
heading: "Payment Methods",
|
|
|
|
|
content: { type: "list", items: ["Credit/Debit Cards (Stripe)", "Bank Transfer (ACH/Wire)", "Corporate Invoicing"] }
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
heading: "Refund Policy",
|
|
|
|
|
content: { type: "paragraph", text: "Services are provided as bespoke engagements. Refunds are granted at our sole discretion based on project delivery milestones and verified service quality issues within 30 days of service activation." }
|
|
|
|
|
}
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
|
<FooterBase
|
|
|
|
|
@@ -68,6 +72,7 @@ export default function PricingPage() {
|
|
|
|
|
title: "Company", items: [
|
|
|
|
|
{ label: "About", href: "#about" },
|
|
|
|
|
{ label: "Services", href: "#services" },
|
|
|
|
|
{ label: "Legal", href: "/legal" },
|
|
|
|
|
{ label: "Work", href: "#work" },
|
|
|
|
|
{ label: "Contact", href: "#contact" },
|
|
|
|
|
],
|