From 21ddfd3f1c82f797c0aaa360fa59ea8534383afb Mon Sep 17 00:00:00 2001 From: ErkiKadhafi Date: Thu, 16 Jan 2025 09:04:06 +0700 Subject: [PATCH] replace floating btn --- src/app/(main)/explore/_components/agent-list.tsx | 1 - src/app/(main)/layout.tsx | 2 ++ src/components/chat-floating-button.tsx | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/(main)/explore/_components/agent-list.tsx b/src/app/(main)/explore/_components/agent-list.tsx index a79f928..b9d7445 100644 --- a/src/app/(main)/explore/_components/agent-list.tsx +++ b/src/app/(main)/explore/_components/agent-list.tsx @@ -67,7 +67,6 @@ export function AgentList() { return ( <> -

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}