2 Commits

Author SHA1 Message Date
9e0e598598 Update src/app/page.tsx 2026-03-26 09:23:09 +00:00
cf892bac77 Merge version_2 into main
Merge version_2 into main
2026-03-26 09:21:49 +00:00

View File

@@ -66,18 +66,18 @@ export default function AIAgentsTemplatePage() {
const pricingPlans = [ const pricingPlans = [
{ {
id: "starter", price: "$29/mo", name: "Starter", buttons: [{ text: "Choose Starter", href: "#" }], id: "starter", price: "$29/mo", name: "Starter", buttons: [{ text: "Get Started", href: "#" }],
features: [ features: [
"3 active agents", "5,000 agent runs/month", "Basic integrations", "Community support", "7-day log retention"], "3 active agents", "5,000 agent runs/month", "Basic integrations", "Community support", "7-day log retention"],
}, },
{ {
id: "pro", price: "$99/mo", name: "Professional", buttons: [{ text: "Select Pro", href: "#" }], id: "pro", price: "$99/mo", name: "Professional", buttons: [{ text: "Get Started", href: "#" }],
features: [ features: [
"15 active agents", "50,000 agent runs/month", "All integrations", "Email support", "30-day log retention"], "15 active agents", "50,000 agent runs/month", "All integrations", "Email support", "30-day log retention"],
}, },
{ {
id: "business", badge: "Most Popular", badgeIcon: Star, id: "business", badge: "Most Popular", badgeIcon: Star,
price: "$299/mo", name: "Business", buttons: [{ text: "Start Business Plan", href: "#" }], price: "$299/mo", name: "Business", buttons: [{ text: "Get Started", href: "#" }],
features: [ features: [
"50 active agents", "250,000 agent runs/month", "Custom integrations", "Priority support", "90-day log retention"], "50 active agents", "250,000 agent runs/month", "Custom integrations", "Priority support", "90-day log retention"],
}, },
@@ -199,7 +199,7 @@ export default function AIAgentsTemplatePage() {
{ icon: Send, title: "Email drafted: client follow-up", status: "Completed" }, { icon: Send, title: "Email drafted: client follow-up", status: "Completed" },
{ icon: Code, title: "Code review: PR #247", status: "Running" }, { icon: Code, title: "Code review: PR #247", status: "Running" },
{ icon: FileText, title: "Contract summarized: NDA v3", status: "Completed" }, { icon: FileText, title: "Contract summarized: NDA v3", status: "Completed" },
{ icon: Database, title: "Data sync: CRM \u2192 warehouse", status: "Running" }, { icon: Database, title: "Data sync: CRM warehouse", status: "Running" },
{ icon: Shield, title: "Security scan: api-gateway", status: "Completed" }, { icon: Shield, title: "Security scan: api-gateway", status: "Completed" },
{ icon: BarChart3, title: "Dashboard updated: KPIs", status: "Completed" }, { icon: BarChart3, title: "Dashboard updated: KPIs", status: "Completed" },
{ icon: Clock, title: "Scheduled: weekly digest", status: "Pending" }, { icon: Clock, title: "Scheduled: weekly digest", status: "Pending" },
@@ -224,7 +224,7 @@ export default function AIAgentsTemplatePage() {
tag="Core Platform" tag="Core Platform"
tagIcon={Layers} tagIcon={Layers}
title="Built for Production, Not Just Prototypes" title="Built for Production, Not Just Prototypes"
description="Every feature is designed for reliability, security, and scale \u2014 so your agents perform in the real world." description="Every feature is designed for reliability, security, and scale so your agents perform in the real world."
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
@@ -252,7 +252,7 @@ export default function AIAgentsTemplatePage() {
{ value: "<100ms", title: "Average Response Time" }, { value: "<100ms", title: "Average Response Time" },
]} ]}
imageSrc="/templates/ai-agents/image1.webp" imageSrc="/templates/ai-agents/image1.webp"
imageAlt="AgentFlow Dashboard" imageAlt="AgentFlow dashboard displaying real-time agent performance, activity logs, and workflow configuration options"
mediaAnimation="slide-up" mediaAnimation="slide-up"
metricsAnimation="slide-up" metricsAnimation="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
@@ -306,7 +306,7 @@ export default function AIAgentsTemplatePage() {
<FooterBaseCard <FooterBaseCard
logoText="AgentFlow" logoText="AgentFlow"
columns={footerColumns} columns={footerColumns}
copyrightText="\u00a9 2025 AgentFlow. All rights reserved." copyrightText="© 2025 AgentFlow. All rights reserved."
/> />
</ThemeProvider> </ThemeProvider>
); );