diff --git a/src/app/home/index.tsx b/src/app/home/index.tsx
index 9c7aa4f..7757298 100644
--- a/src/app/home/index.tsx
+++ b/src/app/home/index.tsx
@@ -27,7 +27,7 @@ import { useModal } from "@/hooks/useModal.ts";
import { useAtom } from "jotai";
import { loginState } from "@/store/user";
import { SubscriptionModalContent } from "@/components/common/modal/SubscriptionModalContent";
-
+import FloatingWidget from "@/components/app/home/floating/floatingWidget";
type CoinInfoType = {
[coin in "BTC" | "ETH" | "XRP"]: {
@@ -112,14 +112,14 @@ export default function HomePage() {
}
};
- /**
+ /**
* @description 구독버튼 클릭시 flowbit서비스에 대해 주기적으로 구독할 수 있는 함수입니다.
*/
- const openSubscriptionModal = () => {
+ const openSubscriptionModal = () => {
open({
title: "구독 설정",
content: ,
- isVisibleBtn: false
+ isVisibleBtn: false,
});
};
@@ -226,7 +226,8 @@ export default function HomePage() {