import { HopeProvider, NotificationsProvider } from "@hope-ui/solid" import { I18nContext } from "@solid-primitives/i18n" import { ErrorBoundary, Suspense } from "solid-js" import { Error, FullScreenLoading } from "~/components" import App from "./App" import { i18n } from "./i18n" import { globalStyles, theme } from "./theme" import "../styles.css" const Index = () => { globalStyles() return ( { console.error("error", err) return }} > }> ) } export { Index }