import type { ReactNode } from 'react' import { Provider } from '@/components/provider' import '@/styles/globals.css' export default async function RootElement({ children }: { children: ReactNode }) { return ( {children} ) } export async function getConfig() { return { render: 'static' } as const }