import Image from "next/image"; import { Card } from "ui"; function Gradient({ conic, className, small, }: { small?: boolean; conic?: boolean; className?: string; }): JSX.Element { return ( ); } const LINKS = [ { title: "Docs", href: "https://turbo.build/repo/docs", description: "Find in-depth information about Turborepo features and API.", }, { title: "Learn", href: "https://turbo.build/repo/docs/handbook", description: "Learn more about monorepos with our handbook.", }, { title: "Templates", href: "https://turbo.build/repo/docs/getting-started/from-example", description: "Choose from over 15 examples and deploy with a single click.", }, { title: "Deploy", href: "https://vercel.com/new", description: " Instantly deploy your Turborepo to a shareable URL with Vercel.", }, ]; export default function Page(): JSX.Element { return (

examples/with-tailwind -  docs

By{" "} Vercel Logo
Turborepo
Turborepo logo
{LINKS.map(({ title, href, description }) => ( {description} ))}
); }