"use client"; import { motion } from "framer-motion" import { SideMenu } from "@/components/pages/dashboard/SideMenu" import { Sparkles } from "lucide-react"; const fadeIn = { initial: { opacity: 0, y: 20 }, animate: { opacity: 1, y: 0 }, transition: { duration: 0.4 }, } export default function GenAI() { return (

Generative AI is coming soon

Experience artificial intelligence without the bloat and cost.

  • Open-source (and public domain) chat interface
  • Use the same models you're familiar with
  • Pay per 1M tokens and save money
  • Free models for testing/use
  • ZERO additional fees

If you prefer not to see this service, you will be able to hide it from Settings when it launches.

) }