"use client" import { motion } from "motion/react" import ScrambleHover from "@/fancy/components/text/scramble-hover" export default function Preview() { const models = [ "Llama 3.1 405B Instruct Turbo", "Llama 3.2 3B Instruct Turbo", "Gemma 2 27B", "Mistral 7B Instruct v0.3", "Mixtral 8x7B Instruct", "DeepSeek LLM Chat 67B", "Qwen 2.5 72B Instruct Turbo", "WizardLM 2 8x22B", "Nous Hermes 2 Mixtral", "StripedHyena Nous 7B", "DBRX Instruct", "MythoMax L2 13B", "SOLAR 10.7B Instruct", "Gemma 2B Instruct", ] return (
{models.map((model, index) => ( ))}
) }