cal.pub0.org/components/ui/PoweredByCalendso.tsx

26 lines
776 B
TypeScript
Raw Normal View History

import Link from "next/link";
const PoweredByCalendso = () => (
2021-08-08 15:13:31 +00:00
<div className="text-xs text-center sm:text-right p-1">
2021-07-22 19:59:54 +00:00
<Link href={`https://calendso.com?utm_source=embed&utm_medium=powered-by-button`}>
<a target="_blank" className="dark:text-white text-gray-500 opacity-50 hover:opacity-100">
powered by{" "}
<img
style={{ top: -2 }}
className="dark:hidden w-auto inline h-3 relative"
src="/calendso-logo-word.svg"
alt="Calendso Logo"
/>
<img
style={{ top: -2 }}
className="hidden dark:inline w-auto h-3 relative"
src="/calendso-logo-word-dark.svg"
alt="Calendso Logo"
/>
</a>
</Link>
</div>
);
2021-07-07 10:43:13 +00:00
export default PoweredByCalendso;