We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4da97d6 commit 3463716Copy full SHA for 3463716
frontend/src/app/(auth)/leetcode-dashboard/page.tsx renamed to frontend/src/app/(auth)/leetcode-dashboard/LeetcodeDashboard.tsx
frontend/src/app/(auth)/page.tsx
@@ -2,13 +2,14 @@
2
3
import { useAuth } from "@/components/auth/AuthContext";
4
import LandingPage from "./components/landing-page/LandingPage";
5
-import Dashboard from "./components/dashboard/Dashboard";
+// import Dashboard from "./components/dashboard/Dashboard";
6
+import LeetcodeDashboard from "./leetcode-dashboard/LeetcodeDashboard";
7
8
const Home = () => {
9
const { token } = useAuth();
10
11
return (
- token ? <Dashboard/> : <LandingPage/>
12
+ token ? <LeetcodeDashboard/> : <LandingPage/>
13
);
14
};
15
0 commit comments