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'; 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 StaffIndexPage({ 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

Flexible, efficient, and intelligent AI
customer service of the new era

Hero Image

Introduction to AI staff:smart AI Customer Service

This is a highly adaptable, efficiently performing, and intelligent AI customer service of the new era. It can swiftly respond to various situations, providing users with personalized and accurate responses, thus saving on enterprise labor costs.

AI staff

{[ { image: aiAImage, title: "Cut down on labor expenses for the business", details: "The business is actively seeking methods to reduce its labor costs, possibly through automation, outsourcing, or restructuring. This initiative aims to optimize operational efficiency and improve the company's financial health in the long term. By implementing these strategies, the business hopes to remain competitive in its industry while ensuring sustainable growth and profitability.", order: false }, { image: aiBImage, title: "A versatile office, administrative, and customer service professional", details: "A versatile professional skilled in office management, administration, and customer service, adept at handling diverse tasks efficiently.", order: true }, { image: aiCImage, title: "24/7, 365 days a year", details: "Operating 24/7, 365 days a year, ensuring round-the-clock availability and support for customers and stakeholders.", order: false }, { image: aiDImage, title: "Custom knowledge base, training, fine-tuning, and RAG, suitable for various industries", details: "Tailored knowledge base, training, refinement, and risk assessment guidance adaptable to diverse industries for enhanced performance and compliance.", order: true }, ].map((item, index) => (

{item.title}

{item.details}

Hero Image
))}
); }