import Head from "next/head"; import { Button, Card } from "ui"; const CARD_CONTENT = [ { title: "Caching Tasks", href: "https://turbo.build/repo/docs/core-concepts/caching", cta: "Read More", }, { title: "Running Tasks", href: "https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks", cta: "Read More", }, { title: "Configuration Options", href: "https://turbo.build/repo/docs/reference/configuration", cta: "Read More", }, ]; export default function Home() { return (
Web - Turborepo Example

Web Turborepo Example

{CARD_CONTENT.map((card) => ( ))}
); }