diff --git a/client/src/components/Dashboard/index.tsx b/client/src/components/Dashboard/index.tsx
index 8fd517e..2e7e2c3 100644
--- a/client/src/components/Dashboard/index.tsx
+++ b/client/src/components/Dashboard/index.tsx
@@ -29,20 +29,13 @@ const Dashboard = ({ name, faq, status, timeline }: DashboardProps) => {
return (
+
Welcome, {name}!
Access the application and view DiamondHacks updates here.
-
diff --git a/client/src/components/Dashboard/style.module.scss b/client/src/components/Dashboard/style.module.scss
index 26d8c39..8ae6ec6 100644
--- a/client/src/components/Dashboard/style.module.scss
+++ b/client/src/components/Dashboard/style.module.scss
@@ -80,9 +80,13 @@
.bannerImage {
position: absolute;
- top: 0;
- right: 0;
+ inset: 0;
z-index: -1;
+ // next/image ruins the image quality for some reason
+ background-image: url('/assets/banner.png');
+ background-size: contain;
+ background-position: right;
+ background-repeat: no-repeat;
animation: fade-in 3.5s 1.5s backwards;
}