mirror of
https://github.com/Pavelevich/claw-alexa.git
synced 2026-03-16 01:16:15 +01:00
22 lines
560 B
JavaScript
22 lines
560 B
JavaScript
export const metadata = {
|
|
title: 'OpenClaw Alexa - Connect Your Gateway',
|
|
description: 'Link your OpenClaw or Moltbot gateway to Alexa',
|
|
}
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="en">
|
|
<body style={{
|
|
margin: 0,
|
|
padding: 0,
|
|
fontFamily: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif',
|
|
background: 'linear-gradient(135deg, #1a1a2e 0%, #16213e 100%)',
|
|
minHeight: '100vh',
|
|
color: '#fff'
|
|
}}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|