Files
hristudio/src/app/layout.tsx
Sean O'Connor 80171b2d70 feat: Enhance user management and UI components
- Updated user API routes to include imageUrl for better user representation.
- Added @radix-ui/react-toast dependency for improved user notifications.
- Refactored dashboard and studies components to incorporate new user fields and loading states.
- Enhanced the layout and structure of the dashboard, studies, and participants pages for better user experience.
- Implemented a dialog for adding participants, improving the participant management workflow.
- Updated breadcrumb navigation to reflect the current study context more accurately.
- Cleaned up unused imports and optimized component rendering for performance.
2024-12-05 13:21:33 -05:00

23 lines
500 B
TypeScript

import { ClerkProvider } from "@clerk/nextjs";
import { Inter } from 'next/font/google';
import { Toaster } from "~/components/ui/toaster";
import "~/app/globals.css";
const inter = Inter({ subsets: ['latin'] });
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<ClerkProvider>
<html lang="en">
<body className={inter.className}>
{children}
<Toaster />
</body>
</html>
</ClerkProvider>
);
}