Spaces:
Runtime error
Runtime error
| import clsx from "clsx"; | |
| import PanacheLogo from "../../../public/logos/panache-default-solid.svg"; | |
| import YCLogo from "../../../public/logos/yc-default-solid.svg"; | |
| const Backing = (props: { className?: string }) => ( | |
| <div | |
| className={clsx( | |
| "flex flex-col font-inter text-xs font-normal text-white/50 md:text-sm", | |
| props.className | |
| )} | |
| > | |
| <div className="flex flex-row items-center gap-x-1"> | |
| <div className="ml-2 mr-1 flex flex-row items-center"> | |
| <a | |
| className=" z-10 -mr-2 cursor-pointer" | |
| href="https://www.ycombinator.com/companies/reworkd" | |
| target="_blank" | |
| > | |
| <YCLogo /> | |
| </a> | |
| <a href="https://www.panache.vc/" target="_blank" className="cursor-pointer"> | |
| <PanacheLogo /> | |
| </a> | |
| </div> | |
| <div className="hidden tracking-wide sm:flex">Backed By</div> | |
| <a | |
| className="flex cursor-pointer flex-row items-center gap-1 font-light text-white/95" | |
| href="https://www.ycombinator.com/companies/reworkd" | |
| target="_blank" | |
| > | |
| Y Combinator | |
| </a> | |
| <span>and</span> | |
| <a | |
| className="cursor-pointer font-light text-white/95" | |
| href="https://www.panache.vc/" | |
| target="_blank" | |
| > | |
| Panache Ventures | |
| </a> | |
| </div> | |
| </div> | |
| ); | |
| export default Backing; | |