import type { Metadata } from "next";import Link from "next/link";import {models} from "@/lib/tool-data";
export const metadata:Metadata={title:"AI models",description:"Explore the image and video model families that inspire nuvid workflows."};
export default function ModelsPage(){return <><section className="page-hero"><div><p className="eyebrow">Model library</p><h1>The right engine<br/>for every frame.</h1><p>Different visual ideas need different strengths. Explore the model families behind modern image and video creation.</p></div></section><section className="content-grid">{models.map((m,i)=><Link className="content-tile" href={`/models/${m.slug}/`} key={m.slug}><span>0{i+1} / Model</span><h2>{m.name}</h2><p>{m.note}</p></Link>)}</section></>}
