feat(ai): Implement AI agent contact form and fix local Qdrant network configs
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

This commit is contained in:
2026-03-06 11:56:12 +01:00
parent 6a6fbb6f19
commit 85d2d2c069
21 changed files with 9857 additions and 13830 deletions

View File

@@ -1,5 +1,5 @@
import { Section } from "@/src/components/Section";
import { ContactForm } from "@/src/components/ContactForm";
import { AgentChat } from "@/src/components/agent/AgentChat";
import { AbstractCircuit } from "@/src/components/Effects";
export default function ContactPage() {
@@ -12,9 +12,10 @@ export default function ContactPage() {
effects={<></>}
className="pt-24 pb-12 md:pt-32 md:pb-20"
>
{/* Full-width Form */}
<ContactForm />
{/* AI Agent Chat */}
<AgentChat />
</Section>
</div>
);
}