import Link from "next/link"; import { ExternalLink } from "lucide-react"; import { Space as SpaceProps } from "@/utils/types"; import { SpaceAuthor } from "./sub/author"; import { SpaceHeader } from "./sub/header"; export const Space: React.FC<{ space: SpaceProps }> = ({ space }) => { return (

{space?.title}

{space?.shortDescription && (

Explore thousands of community trained LoRAs.

)}
); };