replace floating btn

This commit is contained in:
ErkiKadhafi 2025-01-16 09:04:06 +07:00
parent c4adb08473
commit 21ddfd3f1c
3 changed files with 4 additions and 1 deletions

View File

@ -67,7 +67,6 @@ export function AgentList() {
return (
<>
<ChatFloatingButton />
<section className="group pt-8 pb-10 min-h-[50vh] ">
<div className="layout">
<h1 className="mb-4 text-3xl font-bold text-foreground sm:text-4xl">

View File

@ -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) {
<Header />
<main>{children}</main>
<Footer />
<ChatFloatingButton />
</>
);
}

View File

@ -1,3 +1,5 @@
"use client";
import React from "react";
import * as motion from "motion/react-client";