Browse Source

fix: Added message at the bottom of general redirect page.

master
Denis Thiessen 5 months ago
parent
commit
7dfe2245ff
  1. 12
      src/core/RedirectPage.jsx

12
src/core/RedirectPage.jsx

@ -11,11 +11,19 @@ function RedirectPage() {
<WebpageBanner translationKey={infoKey} />
<iframe
src={decodedUrl}
style={{ width: "100%", height: "700px", border: "none" }}
style={{
width: "100%",
height: "600px",
marginTop: "10px",
border: "none",
}}
title="Embedded Content"
/>
<p style={{ fontSize: "18px", color: "red", marginTop: "20px" }}>
🚨 While this seems interesting, maybe you should go back to reach your goal. 🚨
</p>
</div>
);
}
export default RedirectPage;
export default RedirectPage;
Loading…
Cancel
Save