Replace the RSM card with a Nucleus card
diff --git a/Components/Card.js b/Components/Card.js
index c4a31c6..7f9330f 100644
--- a/Components/Card.js
+++ b/Components/Card.js
@@ -40,7 +40,7 @@
         } else if (this.props.icon) {
             icons = <img alt={this.props.title} className={Styles.image} src={`https://assets.clicks.codes/${this.props.icon}.svg`} />
         } else if (this.props.wave) {
-            icons = <img alt={this.props.title} className={Styles.image} src={`https://assets.clicks.codes//${this.props.wave}.svg`} />
+            icons = <img alt={this.props.title} className={Styles.image} src={`https://assets.clicks.codes/web/waves/card/${this.props.wave}.svg`} />
         }
         return <>{icons}</>;
     }