import Image from "next/image" import { Item, ItemContent, ItemDescription, ItemGroup, ItemHeader, ItemTitle, } from "@/examples/base/ui/item" const models = [ { name: "v0-1.5-sm", description: "Everyday tasks and UI generation.", image: "https://images.unsplash.com/photo-1650804068570-7fb2e3dbf888?q=80&w=640&auto=format&fit=crop", credit: "Valeria Reverdo on Unsplash", }, { name: "v0-1.5-lg", description: "Advanced thinking or reasoning.", image: "https://images.unsplash.com/photo-1610280777472-54133d004c8c?q=80&w=640&auto=format&fit=crop", credit: "Michael Oeser on Unsplash", }, { name: "v0-2.0-mini", description: "Open Source model for everyone.", image: "https://images.unsplash.com/photo-1602146057681-08560aee8cde?q=80&w=640&auto=format&fit=crop", credit: "Cherry Laithang on Unsplash", }, ] export function ItemHeaderDemo() { return (
{models.map((model) => ( {model.name} {model.name} {model.description} ))}
) }