Update src/app/chatbot/page.tsx

This commit is contained in:
2026-03-07 07:25:52 +00:00
parent ea50976bc5
commit edd382dec8

View File

@@ -9,59 +9,28 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function ChatbotPage() {
const chatbotFeatures = [
{
id: "1",
title: "Natural Language Understanding",
description: "Understands player and parent intents in both Arabic and English with context-aware responses",
tag: "AI Core",
imageSrc: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147903921.jpg?_wi=11",
imageAlt: "Natural Language Processing"
id: "1", title: "Natural Language Understanding", description: "Understands player and parent intents in both Arabic and English with context-aware responses", tag: "AI Core", imageSrc: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147903921.jpg", imageAlt: "Natural Language Processing"
},
{
id: "2",
title: "Balance Inquiries",
description: "Players and parents can instantly check account balance, session credits, and payment history",
tag: "Account",
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-sports-betting-template_23-2150566766.jpg?_wi=7",
imageAlt: "Balance Inquiries"
id: "2", title: "Balance Inquiries", description: "Players and parents can instantly check account balance, session credits, and payment history", tag: "Account", imageSrc: "http://img.b2bpic.net/free-vector/flat-design-sports-betting-template_23-2150566766.jpg", imageAlt: "Balance Inquiries"
},
{
id: "3",
title: "Session Management",
description: "Request session swaps, join waitlists, and manage attendance directly through natural conversation",
tag: "Scheduling",
imageSrc: "http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150104978.jpg?_wi=7",
imageAlt: "Session Management"
id: "3", title: "Session Management", description: "Request session swaps, join waitlists, and manage attendance directly through natural conversation", tag: "Scheduling", imageSrc: "http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150104978.jpg", imageAlt: "Session Management"
},
{
id: "4",
title: "Payment Assistance",
description: "Guide users through payment processes, explain billing, and handle payment-related inquiries",
tag: "Payments",
imageSrc: "http://img.b2bpic.net/free-photo/basketball-player-with-ball-fingers_23-2147644392.jpg?_wi=7",
imageAlt: "Payment Support"
id: "4", title: "Payment Assistance", description: "Guide users through payment processes, explain billing, and handle payment-related inquiries", tag: "Payments", imageSrc: "http://img.b2bpic.net/free-photo/basketball-player-with-ball-fingers_23-2147644392.jpg", imageAlt: "Payment Support"
},
{
id: "5",
title: "Account Freezing",
description: "Process temporary account freezes, manage suspension reasons, and handle reactivation requests",
tag: "Account",
imageSrc: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147903921.jpg?_wi=12",
imageAlt: "Account Management"
id: "5", title: "Account Freezing", description: "Process temporary account freezes, manage suspension reasons, and handle reactivation requests", tag: "Account", imageSrc: "http://img.b2bpic.net/free-vector/admin-dashboard-panel-template_23-2147903921.jpg", imageAlt: "Account Management"
},
{
id: "6",
title: "Schedule Information",
description: "Answer questions about upcoming sessions, class times, coach assignments, and venue details",
tag: "Information",
imageSrc: "http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150104978.jpg?_wi=8",
imageAlt: "Schedule Info"
id: "6", title: "Schedule Information", description: "Answer questions about upcoming sessions, class times, coach assignments, and venue details", tag: "Information", imageSrc: "http://img.b2bpic.net/free-photo/senior-people-school-class-with-laptop-computer_23-2150104978.jpg", imageAlt: "Schedule Info"
}
];
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" },
@@ -69,8 +38,7 @@ export default function ChatbotPage() {
]
},
{
title: "Platform",
items: [
title: "Platform", items: [
{ label: "Automation Engines", href: "/automation" },
{ label: "AI Chatbot", href: "/chatbot" },
{ label: "Security", href: "#security" },
@@ -78,8 +46,7 @@ export default function ChatbotPage() {
]
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Blog", href: "#blog" },
{ label: "Careers", href: "#careers" },
@@ -87,8 +54,7 @@ export default function ChatbotPage() {
]
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Documentation", href: "#docs" },
{ label: "Support", href: "#support" },
{ label: "Community", href: "#community" },
@@ -104,7 +70,7 @@ export default function ChatbotPage() {
borderRadius="pill"
contentWidth="small"
sizing="medium"
background="floatingGradient"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="shadow"
secondaryButtonStyle="layered"
@@ -143,7 +109,7 @@ export default function ChatbotPage() {
{ text: "Schedule Demo", href: "https://calendly.com" },
{ text: "Contact Sales", href: "mailto:sales@wolvesacademy.com" }
]}
background={{ variant: "floatingGradient" }}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>