4 Commits

Author SHA1 Message Date
b8d8a55efa Update src/app/page.tsx 2026-03-26 09:26:20 +00:00
55fe92b1f2 Merge version_3 into main
Merge version_3 into main
2026-03-26 09:23:12 +00:00
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"],
}, },
@@ -145,7 +145,7 @@ export default function AIAgentsTemplatePage() {
> >
<NavbarStyleFullscreen <NavbarStyleFullscreen
navItems={navItems} navItems={navItems}
brandName="AgentFlow" brandName="Ganja.ai"
bottomLeftText="Build Smarter" bottomLeftText="Build Smarter"
bottomRightText="hello@agentflow.ai" bottomRightText="hello@agentflow.ai"
/> />
@@ -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>
); );