add retargeting pixel

This commit is contained in:
DispatchCommit 2021-07-08 01:26:58 -07:00
parent 36fe736669
commit f390320030
2 changed files with 13 additions and 1 deletions

View file

@ -128,6 +128,13 @@ function HomePage(props: Props) {
{rowData.map(({ title, route, link, icon, help, options = {} }, index) => {
return getRowElements(title, route, link, icon, help, options, index);
})}
{SIMPLE_SITE && (
<img
src="https://ctrack.trafficjunky.net/ctrack?action=list&type=add&id=0&context=Odysee&cookiename=RetargetingPixel&age=44000&maxcookiecount=10"
alt=""
/>
)}
</Page>
);
}

View file

@ -10,7 +10,7 @@ import I18nMessage from 'component/i18nMessage';
import Card from 'component/common/card';
type Props = {
history: { push: string => void, location: { search: string } },
history: { push: (string) => void, location: { search: string } },
doToast: ({}) => void,
};
@ -132,6 +132,11 @@ function SignInVerifyPage(props: Props) {
}
/>
</div>
<img
src="https://ctrack.trafficjunky.net/ctrack?action=list&type=add&id=0&context=Odysee&cookiename=KillPixel&age=0&maxcookiecount=10"
alt=""
/>
</Page>
);
}