From ea50976bc5774b6d6ed56f9f04a00f0009dbd6e5 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 07:25:51 +0000 Subject: [PATCH] Update src/app/automation/page.tsx --- src/app/automation/page.tsx | 72 ++++++++----------------------------- 1 file changed, 14 insertions(+), 58 deletions(-) diff --git a/src/app/automation/page.tsx b/src/app/automation/page.tsx index 49f86b4..e16b996 100644 --- a/src/app/automation/page.tsx +++ b/src/app/automation/page.tsx @@ -18,75 +18,34 @@ export default function AutomationPage() { const automationFeatures = [ { - id: "1", - title: "Scheduling Engine", - description: "Auto-generates recurring sessions, prevents conflicts, enforces capacity limits, and syncs in real-time", - tag: "Scheduling", - imageSrc: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147903921.jpg?_wi=8", - imageAlt: "Scheduling Engine" + id: "1", title: "Scheduling Engine", description: "Auto-generates recurring sessions, prevents conflicts, enforces capacity limits, and syncs in real-time", tag: "Scheduling", imageSrc: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147903921.jpg", imageAlt: "Scheduling Engine" }, { - id: "2", - title: "Attendance Engine", - description: "Processes attendance instantly, auto-deducts sessions, sends notifications, and tracks patterns", - tag: "Attendance", - imageSrc: "http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150104978.jpg?_wi=5", - imageAlt: "Attendance Engine" + id: "2", title: "Attendance Engine", description: "Processes attendance instantly, auto-deducts sessions, sends notifications, and tracks patterns", tag: "Attendance", imageSrc: "http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150104978.jpg", imageAlt: "Attendance Engine" }, { - id: "3", - title: "Performance Tracking", - description: "Aggregates coach ratings into trends, calculates improvements, generates insights, and flags at-risk players", - tag: "Analytics", - imageSrc: "http://img.b2bpic.net/free-photo/basketball-player-with-ball-fingers_23-2147644392.jpg?_wi=6", - imageAlt: "Performance Analytics" + id: "3", title: "Performance Tracking", description: "Aggregates coach ratings into trends, calculates improvements, generates insights, and flags at-risk players", tag: "Analytics", imageSrc: "http://img.b2bpic.net/free-photo/basketball-player-with-ball-fingers_23-2147644392.jpg", imageAlt: "Performance Analytics" }, { - id: "4", - title: "Loyalty & Rewards", - description: "Awards points for streaks, tracks referrals, manages badges, and sends notifications", - tag: "Rewards", - imageSrc: "http://img.b2bpic.net/free-vector/flat-design-sports-betting-template_23-2150566766.jpg?_wi=5", - imageAlt: "Rewards System" + id: "4", title: "Loyalty & Rewards", description: "Awards points for streaks, tracks referrals, manages badges, and sends notifications", tag: "Rewards", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-sports-betting-template_23-2150566766.jpg", imageAlt: "Rewards System" }, { - id: "5", - title: "Referral Engine", - description: "Generates unique codes, tracks conversion chains, auto-awards points, and provides analytics", - tag: "Growth", - imageSrc: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147903921.jpg?_wi=9", - imageAlt: "Referral System" + id: "5", title: "Referral Engine", description: "Generates unique codes, tracks conversion chains, auto-awards points, and provides analytics", tag: "Growth", imageSrc: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147903921.jpg", imageAlt: "Referral System" }, { - id: "6", - title: "Coach Claim Engine", - description: "Validates claims, prevents duplicates, auto-calculates payouts, and generates audit trails", - tag: "Payroll", - imageSrc: "http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150104978.jpg?_wi=6", - imageAlt: "Coach Claims" + id: "6", title: "Coach Claim Engine", description: "Validates claims, prevents duplicates, auto-calculates payouts, and generates audit trails", tag: "Payroll", imageSrc: "http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150104978.jpg", imageAlt: "Coach Claims" }, { - id: "7", - title: "Swap & Waitlist", - description: "Enforces swap limits, routes approvals, auto-manages lists, and tracks patterns", - tag: "Scheduling", - imageSrc: "http://img.b2bpic.net/free-vector/flat-design-sports-betting-template_23-2150566766.jpg?_wi=6", - imageAlt: "Session Management" + id: "7", title: "Swap & Waitlist", description: "Enforces swap limits, routes approvals, auto-manages lists, and tracks patterns", tag: "Scheduling", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-sports-betting-template_23-2150566766.jpg", imageAlt: "Session Management" }, { - id: "8", - title: "Guest Trial Engine", - description: "Auto-creates trial accounts, tracks attendance, generates reports, and nurtures leads", - tag: "Growth", - imageSrc: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147903921.jpg?_wi=10", - imageAlt: "Trial Management" + id: "8", title: "Guest Trial Engine", description: "Auto-creates trial accounts, tracks attendance, generates reports, and nurtures leads", tag: "Growth", imageSrc: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147903921.jpg", imageAlt: "Trial Management" } ]; const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Player App", href: "/player-app" }, { label: "Coach App", href: "/coach-app" }, { label: "Admin Dashboard", href: "/admin-dashboard" }, @@ -94,8 +53,7 @@ export default function AutomationPage() { ] }, { - title: "Platform", - items: [ + title: "Platform", items: [ { label: "Automation Engines", href: "/automation" }, { label: "AI Chatbot", href: "/chatbot" }, { label: "Security", href: "#security" }, @@ -103,8 +61,7 @@ export default function AutomationPage() { ] }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "#about" }, { label: "Blog", href: "#blog" }, { label: "Careers", href: "#careers" }, @@ -112,8 +69,7 @@ export default function AutomationPage() { ] }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Documentation", href: "#docs" }, { label: "Support", href: "#support" }, { label: "Community", href: "#community" }, @@ -129,7 +85,7 @@ export default function AutomationPage() { borderRadius="pill" contentWidth="small" sizing="medium" - background="floatingGradient" + background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="shadow" secondaryButtonStyle="layered" @@ -168,7 +124,7 @@ export default function AutomationPage() { { text: "Schedule Demo", href: "https://calendly.com" }, { text: "Contact Sales", href: "mailto:sales@wolvesacademy.com" } ]} - background={{ variant: "floatingGradient" }} + background={{ variant: "plain" }} useInvertedBackground={false} />