From 3f607b397824ee9d41c622f792eeb9e918e0dc9f Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Fri, 2 Aug 2024 01:48:04 +0530 Subject: [PATCH] Add icons, improve description of home, chat & search page metadata --- src/interface/web/app/chat/layout.tsx | 7 +++++-- src/interface/web/app/layout.tsx | 7 +++++-- src/interface/web/app/search/layout.tsx | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/interface/web/app/chat/layout.tsx b/src/interface/web/app/chat/layout.tsx index 341960f7..0cdc1053 100644 --- a/src/interface/web/app/chat/layout.tsx +++ b/src/interface/web/app/chat/layout.tsx @@ -5,8 +5,11 @@ 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.", + title: "Khoj AI - Chat", + description: "Ask anything. Khoj will use the internet and your docs to answer, paint and even automate stuff for you.", + icons: { + icon: '/static/favicon.ico', + }, }; export default function RootLayout({ diff --git a/src/interface/web/app/layout.tsx b/src/interface/web/app/layout.tsx index 1acd4a3f..282cd18b 100644 --- a/src/interface/web/app/layout.tsx +++ b/src/interface/web/app/layout.tsx @@ -5,8 +5,11 @@ 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.", + title: "Khoj AI - Home", + description: "Your open, personal AI.", + icons: { + icon: '/static/favicon.ico', + }, }; export default function RootLayout({ diff --git a/src/interface/web/app/search/layout.tsx b/src/interface/web/app/search/layout.tsx index ed06f884..bbaa37a9 100644 --- a/src/interface/web/app/search/layout.tsx +++ b/src/interface/web/app/search/layout.tsx @@ -5,7 +5,7 @@ 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.", + description: "Find anything in documents you've shared with Khoj using natural language queries.", icons: { icon: '/static/favicon.ico', },