import { ChakraProvider } from '@chakra-ui/react' // import type { MetaFunction } from "@vercel/remix" import { Links, LiveReload, Meta, Outlet, Scripts, ScrollRestoration } from '@remix-run/react' import { Analytics } from '@vercel/analytics/react' import { Main } from './components/Layout/Main' function Document ({ children, title = 'Thingtime' }: { children: React.ReactNode title?: string }) { return (