Add a search page that just renders truncated results when you click search

This commit is contained in:
sabaimran
2024-07-24 17:43:19 +05:30
parent 52db15706d
commit 5adbfe14ab
3 changed files with 206 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
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>
);
}