Feat: Add root layout with basic Tailwind support

This commit is contained in:
2026-03-14 00:03:39 -07:00
parent 4fd6456e28
commit 025bedb3a8

14
app/layout.js Normal file
View File

@@ -0,0 +1,14 @@
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>
)
}