mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-12-20 11:27:46 +00:00
06dce4729b
- Updated references panel - Use subtle coloring for chat cards - Chat streaming with train of thought - Side panel with limited sessions, expandable - Manage conversation file filters easily from the side panel - Updated nav menu, easily go to agents/automations/profile - Upload data from the chat UI (on click attachment icon) - Slash command pop-up menu, scrollable and selectable - Dark mode-enabled - Mostly mobile friendly
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
import type { Metadata } from "next";
|
|
import { Noto_Sans } from "next/font/google";
|
|
import "../globals.css";
|
|
|
|
const inter = Noto_Sans({ subsets: ["latin"] });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Khoj AI - Chat",
|
|
description: "Use this page to chat with Khoj AI.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<meta httpEquiv="Content-Security-Policy"
|
|
content="default-src 'self' https://assets.khoj.dev;
|
|
script-src 'self' https://assets.khoj.dev 'unsafe-inline' 'unsafe-eval';
|
|
connect-src 'self' https://ipapi.co/json ws://localhost:42110;
|
|
style-src 'self' https://assets.khoj.dev 'unsafe-inline' https://fonts.googleapis.com;
|
|
img-src 'self' data: https://*.khoj.dev https://*.googleusercontent.com https://*.google.com/ https://*.gstatic.com;
|
|
font-src 'self' https://assets.khoj.dev https://fonts.gstatic.com;
|
|
child-src 'none';
|
|
object-src 'none';"></meta>
|
|
<body className={inter.className}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|