mirror of
https://github.com/khoaliber/khoj.git
synced 2026-03-06 13:22:12 +00:00
Format next.js web app with prettier
This commit is contained in:
@@ -2,12 +2,12 @@ import type { Metadata } from "next";
|
||||
|
||||
import "../globals.css";
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Khoj AI - Search",
|
||||
description: "Find anything in documents you've shared with Khoj using natural language queries.",
|
||||
description:
|
||||
"Find anything in documents you've shared with Khoj using natural language queries.",
|
||||
icons: {
|
||||
icon: '/static/favicon.ico',
|
||||
icon: "/static/favicon.ico",
|
||||
},
|
||||
};
|
||||
|
||||
@@ -16,9 +16,5 @@ export default function RootLayout({
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<div>
|
||||
{children}
|
||||
</div>
|
||||
);
|
||||
return <div>{children}</div>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user