24 lines
725 B
TypeScript
24 lines
725 B
TypeScript
|
import Link from "next/link";
|
||
|
|
||
|
const PoweredByCal = () => (
|
||
|
<div className="text-xs text-center sm:text-right p-1">
|
||
|
<Link href={`https://cal.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
|
||
|
className="dark:hidden w-auto inline h-[10px] relative -mt-px"
|
||
|
src="https://cal.com/logo.svg"
|
||
|
alt="Cal.com Logo"
|
||
|
/>
|
||
|
<img
|
||
|
className="hidden dark:inline w-auto h-[10px] relativ -mt-px"
|
||
|
src="https://cal.com/logo-white.svg"
|
||
|
alt="Cal.com Logo"
|
||
|
/>
|
||
|
</a>
|
||
|
</Link>
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
export default PoweredByCal;
|