From 11ef6daf2345b0a370d9af733a4542733fdad016 Mon Sep 17 00:00:00 2001 From: Bob Burningham Date: Sat, 7 Oct 2023 13:14:50 -0700 Subject: [PATCH] added clerk providor --- app/(main)/layout.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/(main)/layout.tsx b/app/(main)/layout.tsx index d38dddf..b89b685 100644 --- a/app/(main)/layout.tsx +++ b/app/(main)/layout.tsx @@ -1,6 +1,7 @@ import './globals.css' import type { Metadata } from 'next' import { Open_Sans } from 'next/font/google' +import { ClerkProvider } from '@clerk/nextjs' const font = Open_Sans({ subsets: ['latin'] }) @@ -15,8 +16,10 @@ export default function RootLayout({ children: React.ReactNode }) { return ( - - {children} - + + + {children} + + ) }