File size: 474 Bytes
c4412d0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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>
  );
}