renamed PoweredByCalendso
This commit is contained in:
parent
b125ece57b
commit
ee5cc32936
2 changed files with 4 additions and 4 deletions
|
@ -19,7 +19,7 @@ import DatePicker from "@components/booking/DatePicker";
|
||||||
import TimeOptions from "@components/booking/TimeOptions";
|
import TimeOptions from "@components/booking/TimeOptions";
|
||||||
import { HeadSeo } from "@components/seo/head-seo";
|
import { HeadSeo } from "@components/seo/head-seo";
|
||||||
import AvatarGroup from "@components/ui/AvatarGroup";
|
import AvatarGroup from "@components/ui/AvatarGroup";
|
||||||
import PoweredByCalendso from "@components/ui/PoweredByCalendso";
|
import PoweredByCale from "@components/ui/PoweredByCal";
|
||||||
|
|
||||||
import { AvailabilityPageProps } from "../../../pages/[user]/[type]";
|
import { AvailabilityPageProps } from "../../../pages/[user]/[type]";
|
||||||
|
|
||||||
|
@ -215,7 +215,7 @@ const AvailabilityPage = ({ profile, eventType, workingHours }: AvailabilityPage
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{(!eventType.users[0] || !isBrandingHidden(eventType.users[0])) && <PoweredByCalendso />}
|
{(!eventType.users[0] || !isBrandingHidden(eventType.users[0])) && <PoweredByCale />}
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
|
|
||||||
const PoweredByCalendso = () => (
|
const PoweredByCal = () => (
|
||||||
<div className="text-xs text-center sm:text-right p-1">
|
<div className="text-xs text-center sm:text-right p-1">
|
||||||
<Link href={`https://cal.com?utm_source=embed&utm_medium=powered-by-button`}>
|
<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">
|
<a target="_blank" className="dark:text-white text-gray-500 opacity-50 hover:opacity-100">
|
||||||
|
@ -20,4 +20,4 @@ const PoweredByCalendso = () => (
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
export default PoweredByCalendso;
|
export default PoweredByCal;
|
Loading…
Reference in a new issue