---
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import type { Metadata } from 'next'
|
||||
import { Providers } from './providers'
|
||||
import { Flex } from '@chakra-ui/react'
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'HSL Bike Helper',
|
||||
description: 'An app that makes prediction based on Open Data from the Helsinki Bike System.',
|
||||
}
|
||||
|
||||
const RootLayout = ({ children, }: Readonly<{ children: React.ReactNode }>) => {
|
||||
return (
|
||||
<html lang='en'>
|
||||
<body>
|
||||
<Providers>
|
||||
<Flex justifyContent='center' width='100%' padding={4} minH='calc(100vh - 72px)'>
|
||||
{children}
|
||||
</Flex>
|
||||
</Providers>
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
}
|
||||
export default RootLayout
|
||||
Reference in New Issue
Block a user