diff --git a/apps/potlock/widget/Nav.jsx b/apps/potlock/widget/Nav.jsx
index 3ab2674e..3be639e4 100644
--- a/apps/potlock/widget/Nav.jsx
+++ b/apps/potlock/widget/Nav.jsx
@@ -221,25 +221,70 @@ const Ear = styled.div`
const Banner = styled.div`
width: 100%;
// max-height: 50px;
- // background: #2e2e2e;
- background: rgb(6 10 15);
+ background: #dd3345;
+ // background: rgb(6 10 15);
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 8px 0;
- border-bottom: 2px rgb(96, 100, 102) solid;
+ // border-bottom: 2px rgb(96, 100, 102) solid;
`;
const BannerText = styled.div`
text-align: center;
- color: rgb(145 150 153);
+ color: white;
font-size: 16px;
font-weight: 600;
margin-left: 8px;
@media screen and (max-width: 768px) {
- font-size: 14px;
+ font-size: 12px;
+ margin-left: 4px;
+ }
+`;
+const BannerLinkContainer = styled.a`
+ display: flex;
+ cursor: pointer;
+ text-align: center;
+ font-weight: bold;
+ color: white;
+ font-size: 14px;
+ line-height: 21px;
+ margin-left: 16px;
+ gap: 8px;
+
+ &:hover {
+ text-decoration: none;
+ }
+
+ @media screen and (max-width: 768px) {
+ font-size: 12px;
+ margin-left: 8px;
+ gap: 4px;
+`;
+
+const BannerLinkSvg = styled.svg`
+ width: 20px;
+ height: 20px;
+ fill: none;
+ transition: all;
+
+ &:hover {
+ transform: rotate(45deg);
+ }
+
+ @media screen and (max-width: 768px) {
+ width: 16px;
+ height: 16px;
+ }
+`;
+
+const BannerAlertSvg = styled.svg`
+ width: 18px;
+
+ @media screen and (max-width: 768px) {
+ width: 14px;
}
`;
@@ -262,22 +307,39 @@ const Modal = ({ isOpen, onClose, children }) => {
return (
<>
-
+
This app is in beta. It has not been audited.
+
+ Learn more
+
+
+
+