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