mirror of
https://github.com/multipleof4/KalBot.git
synced 2026-03-17 14:01:02 +00:00
15 lines
249 B
JavaScript
15 lines
249 B
JavaScript
import './globals.css'
|
|
|
|
export const metadata = {
|
|
title: 'Kalbot Admin',
|
|
description: 'Kalshi bot management',
|
|
}
|
|
|
|
export default function RootLayout({ children }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|