web-production-saas-starter/next_b2b_starter/app/dashboard/knowledge/layout.tsx
2025-12-16 18:54:41 +04:00

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}</>;
}