Files
ballistic-builder/src/app/layout.tsx

18 lines
410 B
TypeScript
Raw Normal View History

2024-11-21 13:03:00 -05:00
import { Provider } from "../components/ui/provider"
import "../styles/globals.css";
2024-11-20 17:08:05 -05:00
export const metadata = {
2024-11-21 16:17:03 -05:00
title: 'Ballistic Builder',
description: 'Freedom On',
2024-11-20 17:08:05 -05:00
}
2024-11-14 12:45:58 -05:00
2024-11-21 13:03:00 -05:00
export default function RootLayout(props: { children: React.ReactNode }) {
const { children } = props;
2024-11-14 12:45:58 -05:00
return (
2024-11-21 13:03:00 -05:00
<html suppressHydrationWarning>
<body>
<Provider>{children}</Provider>
</body>
2024-11-14 12:45:58 -05:00
</html>
2024-11-20 17:08:05 -05:00
)
}