playgo_next / app /embed /layout.tsx
ChenyuRabbitLove's picture
feat: add embeddedable chat component
c4412d0
raw
history blame contribute delete
474 Bytes
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "PlayGo AI Chat",
description: "Embedded AI Chat Interface",
};
export default function EmbedLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body style={{
margin: 0,
padding: 0,
background: 'transparent',
height: '100%',
width: '100%'
}}>
{children}
</body>
</html>
);
}