"use client"; import { FC } from "react"; import Image from "next/image"; import { WEBSITE_URL } from "@plane/constants"; // assets import planeLogo from "@/public/plane-logo.svg"; type TPoweredBy = { disabled?: boolean; }; export const PoweredBy: FC = (props) => { // props const { disabled = false } = props; if (disabled || !WEBSITE_URL) return null; return (
Plane logo
Powered by Plane Publish
); };