mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-25 15:59:06 -06:00
* Add Formbricks Signature Branding (can be deactivated in Look & Feel Settings) --------- Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
16 lines
399 B
TypeScript
16 lines
399 B
TypeScript
export default function FormbricksSignature() {
|
|
return (
|
|
<a
|
|
href="https://formbricks.com?utm_source=survey_branding"
|
|
target="_blank"
|
|
className="mt-4 flex justify-center">
|
|
<p className=" text-xs text-slate-400">
|
|
Powered by{" "}
|
|
<b>
|
|
<span className="text-slate-500 hover:text-slate-700">Formbricks</span>
|
|
</b>
|
|
</p>
|
|
</a>
|
|
);
|
|
}
|