mirror of
https://github.com/soconnor0919/hristudio.git
synced 2025-12-11 22:54:45 -05:00
- 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.
23 lines
500 B
TypeScript
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>
|
|
);
|
|
} |