diff --git a/src/components/MyAlert.js b/src/components/MyAlert.js index c0a0527..36584c3 100644 --- a/src/components/MyAlert.js +++ b/src/components/MyAlert.js @@ -14,41 +14,40 @@ const MyAlert = () => { sx={{ position: "sticky", top: 0, - background: "linear-gradient(90deg, #ff4081, #f50057)", - color: "white", + background: "#dbe8e1", + color: "#034687", padding: "12px 24px", textAlign: "center", zIndex: 1000, boxShadow: "0px 4px 10px rgba(0, 0, 0, 0.3)", display: "flex", alignItems: "center", - justifyContent: "center" + justifyContent: "space-between", + borderRadius: "8px", + border: "2px solid #00478f", + maxWidth: "100%", + margin: "0 auto", }} > - - We have rebranded! SMSWithoutBorders is now RelaySMS. Visit our new website at{" "} - - relaysms.com - . + 🎉 🎉 🎉 Evolving, not changing! 🎉 🎉 🎉
+ SMSWithoutBorders is now RelaySMS + Learn More +
- - + + + ) : null; diff --git a/src/components/index.js b/src/components/index.js index 00a82ce..00a309e 100644 --- a/src/components/index.js +++ b/src/components/index.js @@ -11,3 +11,4 @@ export * from "./Alert"; export * from "./QRCode"; export * from "./Announcement"; export * from "./form"; +export * from "./MyAlert";