This commit is contained in:
mlogclub
2026-04-09 10:01:23 +08:00
commit efe801b8bf
707 changed files with 110595 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
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>
);
}