diff --git a/src/components/Banner/Banner.css b/src/components/Banner/Banner.css
index 101ec24..d861487 100644
--- a/src/components/Banner/Banner.css
+++ b/src/components/Banner/Banner.css
@@ -13,7 +13,8 @@
pointer-events: none;
}
-.banner {
+.banner ::selection {
+ background-color: var(--moss-shadow);
}
.banner .main-button {
@@ -67,6 +68,7 @@
@media screen and (max-width: 719px) {
.banner-container {
padding: 0;
+ gap: 0;
}
.banner-content {
diff --git a/src/components/Banner/Banner.tsx b/src/components/Banner/Banner.tsx
index 2d2dbc2..78afdf7 100644
--- a/src/components/Banner/Banner.tsx
+++ b/src/components/Banner/Banner.tsx
@@ -20,7 +20,7 @@ type BannerProps = {
const variants: Variants = {
initial: { y: -120 },
animate: { y: 0 },
- exit: { y: -120 },
+ exit: { opacity: 0 },
};
const BANNER_STATE_KEY = "banner_state";
diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx
index 8e633c4..f18438d 100644
--- a/src/components/Header/Header.tsx
+++ b/src/components/Header/Header.tsx
@@ -2,6 +2,7 @@ import {
ArrowCircleUpRight,
ArrowCircleDown,
MegaphoneSimple,
+ HandHeart,
} from "@phosphor-icons/react";
import Banner from "@/components/Banner";
@@ -52,6 +53,20 @@ const Header = (_: HeaderProps) => {
+