Spaces:
Sleeping
Sleeping
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> | |
); | |
} |