14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Knowledge Base",
|
|
description: "Upload documents and chat with AI to find information quickly.",
|
|
};
|
|
|
|
export default function KnowledgeLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <>{children}</>;
|
|
}
|