Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 7s
Build & Deploy / 🏗️ Build (push) Failing after 18m2s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 QA (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 3s
22 lines
553 B
TypeScript
22 lines
553 B
TypeScript
import { Section } from "@/src/components/Section";
|
|
import { AgentChat } from "@/src/components/agent/AgentChat";
|
|
import { AbstractCircuit } from "@/src/components/Effects";
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<div className="flex flex-col bg-white min-h-screen overflow-hidden relative">
|
|
<AbstractCircuit />
|
|
|
|
<Section
|
|
containerVariant="wide"
|
|
effects={<></>}
|
|
className="pt-24 pb-12 md:pt-32 md:pb-20"
|
|
>
|
|
{/* AI Agent Chat */}
|
|
<AgentChat />
|
|
</Section>
|
|
</div>
|
|
);
|
|
}
|
|
|