diff --git a/.env.example b/.env.example
index eacd76b..f768022 100644
--- a/.env.example
+++ b/.env.example
@@ -1,2 +1,6 @@
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
+NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in
+NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up
+NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/overview
+NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/overview
diff --git a/app/(authenticated)/layout.tsx b/app/(authenticated)/layout.tsx
index e6eed60..026814a 100644
--- a/app/(authenticated)/layout.tsx
+++ b/app/(authenticated)/layout.tsx
@@ -1,31 +1,3 @@
-import { Particles } from "@/components/landing/particles";
-import {
- ClerkProvider,
- SignIn,
- SignedIn,
- SignedOut,
-} from "@clerk/nextjs/app-beta";
-
export default function AppLayout({ children }: { children: React.ReactNode }) {
- return (
-
+
+ +