Files
mintel.me/apps/web/app/(site)/contact/page.tsx
Marc Mintel 85d2d2c069
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
feat(ai): Implement AI agent contact form and fix local Qdrant network configs
2026-03-06 11:56:12 +01:00

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>
);
}