feat: add RAG chat widget for recruiter assistant

This commit is contained in:
2026-02-25 15:17:24 +01:00
parent 4a5155eb1e
commit 3ad4a7ab85
3 changed files with 173 additions and 0 deletions
+2
View File
@@ -1,4 +1,5 @@
import type { Metadata } from "next";
import ChatWidget from "@/components/ChatWidget";
import { Varela_Round } from "next/font/google";
import "./globals.css";
@@ -31,6 +32,7 @@ export default function RootLayout({
className={`${varelaRound.variable} antialiased font-varela`}
>
{children}
<ChatWidget />
</body>
</html>
);