"use client"; import type { FC } from "react"; import { WEBSITE_URL } from "@plane/constants"; // assets import { PlaneLogo } from "@plane/propel/icons"; type TPoweredBy = { disabled?: boolean; }; export const PoweredBy: FC = (props) => { // props const { disabled = false } = props; if (disabled || !WEBSITE_URL) return null; return (
Powered by Plane Publish
); };