diff --git a/src/assets/styles/global.css b/src/assets/styles/global.css
index d7c5128..412c724 100644
--- a/src/assets/styles/global.css
+++ b/src/assets/styles/global.css
@@ -220,3 +220,10 @@ Custom
background-color: oklch(from rgba(255, 255, 255, 2.0) calc(l - 0.02) c h);
}
+.random-msg {
+ padding-top: 10px;
+ max-width: 100%;
+ word-wrap: break-word;
+ white-space: pre-wrap;
+ color: 'inherit';
+}
diff --git a/src/components/Footer.astro b/src/components/Footer.astro
index 8ac60b4..69b67c1 100644
--- a/src/components/Footer.astro
+++ b/src/components/Footer.astro
@@ -1,9 +1,8 @@
---
-import { metaData } from "../config";
-import { Icon } from "astro-icon/components";
+import { metaData, API_URL } from "../config";
+import RandomMsg from "../components/RandomMsg";
const YEAR = new Date().getFullYear();
-
---
+