mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-03 13:19:16 +00:00
25 lines
482 B
TypeScript
25 lines
482 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
import "../globals.css";
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Khoj AI - Search",
|
|
description: "Search through all the documents you've shared with Khoj AI using natural language queries.",
|
|
icons: {
|
|
icon: '/static/favicon.ico',
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<div>
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|