Aidan 56603e7e99
All checks were successful
Build and Push Nightly CI Image / build_and_push (push) Successful in 1m47s
Build and Push Docker Image / build_and_push (push) Successful in 3s
i don't even know at this point (3 billion changes to build the first release)
2025-02-16 15:28:17 -05:00

38 lines
1.4 KiB
TypeScript

"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 (
<div className="flex flex-1 overflow-hidden">
<SideMenu />
<main className="flex-1 w-full overflow-y-auto pl-0 lg:pl-64">
<div className="container mx-auto px-4 py-6 w-full">
<motion.div {...fadeIn} className="text-center">
<Sparkles className="h-16 w-16 mx-auto mt-2" />
<h1 className="text-3xl font-bold mt-8 mb-3">Generative AI is coming soon</h1>
<p>Experience artificial intelligence without the bloat and cost.</p>
<ul className="mt-6 list-disc list-inside">
<li>Open-source (and public domain) chat interface</li>
<li>Use the same models you&apos;re familiar with</li>
<li>Pay per 1M tokens and save money</li>
<li>Free models for testing/use</li>
<li><span className="font-bold">ZERO</span> additional fees</li>
</ul>
<p className="mt-4">If you prefer not to see this service, you will be able to hide it from Settings when it launches.</p>
</motion.div>
</div>
</main>
</div>
)
}