Spaces:
Runtime error
Runtime error
File size: 1,351 Bytes
cd6f98e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
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;
|