import { ArrowLongRightIcon, ArrowTopRightOnSquareIcon } from "@heroicons/react/24/outline"; import Image from "next/image"; import { CopyCommand } from "@/components/copy-command"; import { VisualPlate } from "@/components/visual-plate"; const fieldCities = ["Toronto", "Berlin", "Tokyo", "Shanghai", "London", "Lisbon", "New York", "São Paulo", "Singapore", "Dubai"]; function Nav() { return (
Artystic logo Artystic / Skill
); } function SourceItem({ label, value }: { label: string; value: string }) { return (

— {label}

{value}

); } function Rule({ number, title, body }: { number: string; title: string; body: string }) { return (

{number}

{title}

{body}

); } function IssueHeader({ numeral, title, meta }: { numeral: string; title: string; meta: string }) { return (
{numeral} {title} {meta}
); } function PromptLine({ label, body }: { label: string; body: string }) { return (

{label}

{body}

); } export default function Home() { return (
); }