import { cn, nanoid } from '@/lib/utils' import { auth } from '@/auth' // import { Header } from '@/components/header' // import { Web3Provider } from '@/components/providers/web3-provider' import { Metadata } from 'next' import { Message } from '@aigxion/isdk' import { baseTitle, descriptionRoot } from '@/lib/metadata' import Image from "next/image"; import aImage from '../../../components/images/a.png' import bImage from '../../../components/images/b.png'; import cImage from '../../../components/images/c.png'; import dImage from '../../../components/images/d.png'; import aiStaffmage from '../../../components/images/ai_staff.png'; import aiBGImage from '../../../components/images/ai_staff_bg.png'; import aiAImage from '../../../components/images/ai_a.png'; import aiBImage from '../../../components/images/ai_b.png'; import aiCImage from '../../../components/images/ai_c.png'; import aiDImage from '../../../components/images/ai_d.png'; import aiEImage from '../../../components/images/ai_e.png'; export const metadata: Metadata = { metadataBase: new URL('https://blogai.ai'), title: { default: baseTitle, template: baseTitle }, description: `${descriptionRoot}`, icons: { icon: '/favicon.png' } } import Link from "next/link"; import { IconChevronUpDown, IconGitHub } from '@/components/ui/icons' import { Button } from '@/components/ui/button' import { Frame } from '@/components/frame' // const Line: React.FC = ({ className, IconLeft, label, IconRight }) => { const Line: React.FC<{ className?: string }> = ({ className }) => { return (
); }; export default async function IndexPage({ params: { locale } }: { params: { locale: string } }) { const session = await auth() const avatarUrl = session?.user?.image const id = nanoid() // const { t, resources } = await initTranslations(locale, i18nNamespaces); return (
Hero Image

Anywhere, anytime, AI Staff makes
every interaction more efficient.

Hero Image

Overview

AI Staff is an intelligent customer service platform built using advanced large language model technology, dedicated to providing seamless, efficient customer service. Supporting multiple interaction modes, including text and voice, it learns from enterprise-specific data to offer around-the-clock personalized customer service solutions, significantly reducing reliance on traditional human support.

AI staff

{[ { image: aiAImage, title: "Deep Learning Understanding", details: "AI Staff utilizes large language models to deeply understand user needs and intentions, significantly surpassing traditional keyword matching techniques, enhancing the accuracy and efficiency of problem-solving.", order: false }, { image: aiBImage, title: "Private Domain Knowledge Learning", details: "Users can upload proprietary company documents, enabling AI Staff to learn from this data, thus precisely adapting to specific industry needs and enhancing customer service relevance and professionalism.", order: true }, { image: aiCImage, title: "24/7 Service", details: "AI Staff provides services around the clock, day and night, always online, greatly reducing dependence on traditional customer service teams, helping businesses save on manpower costs and improve service continuity.", order: false }, { image: aiDImage, title: "Multimodal Support", details: "The system supports text and voice inputs to meet different user preferences, offering a more natural and convenient interaction mode. Whether typing or speaking, users receive swift responses.", order: true }, { image: aiEImage, title: "Customizable Services", details: "Services can be customized according to specific business needs, including employee personality, response length, and service methods, ensuring the service experience maximally aligns with corporate culture and customer expectations, enhancing customer satisfaction and loyalty.", order: false }, ].map((item, index) => (

{item.title}

{item.details}

Hero Image
))}
); }