add email support when access code is set
This commit is contained in:
parent
562eee8a32
commit
5c3fc7df39
@ -172,7 +172,7 @@ function App() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mt-2">
|
<div className="mt-2">
|
||||||
{IS_RUNNING_ON_CLOUD && <PicoBadge />}
|
{IS_RUNNING_ON_CLOUD && <PicoBadge settings={settings} />}
|
||||||
{IS_RUNNING_ON_CLOUD && (
|
{IS_RUNNING_ON_CLOUD && (
|
||||||
<TermsOfServiceDialog
|
<TermsOfServiceDialog
|
||||||
open={!settings.isTermOfServiceAccepted}
|
open={!settings.isTermOfServiceAccepted}
|
||||||
|
|||||||
@ -1,4 +1,6 @@
|
|||||||
export function PicoBadge() {
|
import { Settings } from "../types";
|
||||||
|
|
||||||
|
export function PicoBadge({ settings }: { settings: Settings }) {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<a
|
<a
|
||||||
@ -12,6 +14,7 @@ export function PicoBadge() {
|
|||||||
feature requests?
|
feature requests?
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
{!settings.accessCode && (
|
||||||
<a href="https://picoapps.xyz?ref=screenshot-to-code" target="_blank">
|
<a href="https://picoapps.xyz?ref=screenshot-to-code" target="_blank">
|
||||||
<div
|
<div
|
||||||
className="fixed z-50 bottom-5 right-5 rounded-md shadow text-black
|
className="fixed z-50 bottom-5 right-5 rounded-md shadow text-black
|
||||||
@ -20,6 +23,17 @@ export function PicoBadge() {
|
|||||||
an open source project by Pico
|
an open source project by Pico
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
)}
|
||||||
|
{settings.accessCode && (
|
||||||
|
<a href="mailto:support@picoapps.xyz" target="_blank">
|
||||||
|
<div
|
||||||
|
className="fixed z-50 bottom-5 right-5 rounded-md shadow text-black
|
||||||
|
bg-white px-4 text-xs py-3 cursor-pointer"
|
||||||
|
>
|
||||||
|
email support
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user