import { component$ } from "@builder.io/qwik"; import { cn } from "./design"; import { Link } from "@builder.io/qwik-city"; type Props = { class?: string; } export default component$(({ class: className }: Props) => { return ( ) })