Files
ai-agent/widget/app/layout.tsx
T
mlogclub efe801b8bf Init
2026-04-09 10:01:23 +08:00

25 lines
503 B
TypeScript

import type { Metadata } from "next";
import { ImageLightboxProvider } from "@/components/image-lightbox";
import "./globals.css";
export const metadata: Metadata = {
title: "贝壳AI客服插件",
description: "Embedded customer service widget",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="zh-CN">
<body>
<ImageLightboxProvider>{children}</ImageLightboxProvider>
</body>
</html>
);
}