diff --git a/src/app/(main)/layout.tsx b/src/app/(main)/layout.tsx
index 4c44456..772b3e6 100644
--- a/src/app/(main)/layout.tsx
+++ b/src/app/(main)/layout.tsx
@@ -1,5 +1,6 @@
import Footer from "@/components/sections/footer";
import Header from "@/components/sections/header";
+import { ChatFloatingButton } from "@/components/chat-floating-button";
interface MarketingLayoutProps {
children: React.ReactNode;
@@ -11,6 +12,7 @@ export default async function Layout({ children }: MarketingLayoutProps) {
{children}
+
>
);
}
diff --git a/src/components/chat-floating-button.tsx b/src/components/chat-floating-button.tsx
index 86b934b..a8ce7a6 100644
--- a/src/components/chat-floating-button.tsx
+++ b/src/components/chat-floating-button.tsx
@@ -1,3 +1,5 @@
+"use client";
+
import React from "react";
import * as motion from "motion/react-client";