replace floating btn
This commit is contained in:
parent
c4adb08473
commit
21ddfd3f1c
@ -67,7 +67,6 @@ export function AgentList() {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<ChatFloatingButton />
|
|
||||||
<section className="group pt-8 pb-10 min-h-[50vh] ">
|
<section className="group pt-8 pb-10 min-h-[50vh] ">
|
||||||
<div className="layout">
|
<div className="layout">
|
||||||
<h1 className="mb-4 text-3xl font-bold text-foreground sm:text-4xl">
|
<h1 className="mb-4 text-3xl font-bold text-foreground sm:text-4xl">
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import Footer from "@/components/sections/footer";
|
import Footer from "@/components/sections/footer";
|
||||||
import Header from "@/components/sections/header";
|
import Header from "@/components/sections/header";
|
||||||
|
import { ChatFloatingButton } from "@/components/chat-floating-button";
|
||||||
|
|
||||||
interface MarketingLayoutProps {
|
interface MarketingLayoutProps {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
@ -11,6 +12,7 @@ export default async function Layout({ children }: MarketingLayoutProps) {
|
|||||||
<Header />
|
<Header />
|
||||||
<main>{children}</main>
|
<main>{children}</main>
|
||||||
<Footer />
|
<Footer />
|
||||||
|
<ChatFloatingButton />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import * as motion from "motion/react-client";
|
import * as motion from "motion/react-client";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user