// importing Stylesheet file from the UI folder. import '@/app/ui/global.css'; import {inter} from '@/app/ui/fonts' export default function RootLayout({ children, }: { children: React.ReactNode; }) { return ( {children} ); }