Files
claw-alexa/webapp/app/layout.js
2026-01-30 21:14:19 +01:00

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>
)
}