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 naturalImage from '@/components/images/natural.png'; import voiceImage from '@/components/images/voice.png'; import signlangImage from '@/components/images/signlang.png'; import lipreadImage from '@/components/images/lipread.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 (
{/* */}

Intent-Driven SDK:
Empowering Seamless User
Experiences

{/*

We wanted pricing to be simple and affordable for anyone, so we've created flexible plans that don't need an accounting degree to figure out.

*/}
{[ { image: aImage, title: "Natural language interaction", url: "/#a" }, { image: bImage, title: "Voice interaction", url: "/#b" }, { image: cImage, title: "Sign language interaction", url: "/#c" }, { image: dImage, title: "Lip language interaction", url: "/#d" }, ].map((post, index) => ( //
Hero Image

{post.title}

// ))}

Natural language interaction

Use natural language to convey intentions to the machine, fulfilling the user's objectives.

Hero Image
{[ { image: voiceImage, title: " Voice interaction", details: "Use spoken language to convey intentions, making human-machine interaction simpler and more direct.", order: false }, { image: signlangImage, title: "Sign language interaction", details: "Use sign language to convey intentions, allowing the machine to understand sign language and facilitate the integration of disabled individuals with society.", order: true }, { image: lipreadImage, title: "Lip reading language interaction", details: "Support lip reading to convey intentions, enabling interaction with the machine through lip reading in noisy or confidential environments.", order: false }, ].map((item, index) => (

{item.title}

{item.details}

Hero Image
))}
{/*
Need something custom?
We'll find a way. } color={Color.Purple} className="bg-gradient-to-tr from-transparent to-[#9D72FF]/10 " />
Contact Us
*/} {/*
*/}
); }