├── types └── react-slick.d.ts ├── public └── images │ ├── grainy.png │ ├── peepcn.png │ ├── grainy1.jpg │ └── codenexuslogo.png ├── app ├── api │ ├── auth │ │ └── [auth0] │ │ │ └── route.js │ ├── feedback │ │ └── route.ts │ └── courses │ │ └── route.ts ├── profile │ ├── enrolled │ │ └── page.tsx │ ├── dashboard │ │ └── page.tsx │ └── me │ │ └── page.tsx ├── page.tsx ├── feedback │ └── page.tsx ├── trending │ └── page.tsx ├── creator │ └── page.tsx ├── courses │ ├── page.tsx │ └── addCourse │ │ └── page.tsx ├── layout.tsx └── globals.css ├── postcss.config.mjs ├── components ├── ui │ ├── fonts.ts │ ├── skeleton.tsx │ ├── label.tsx │ ├── input.tsx │ ├── separator.tsx │ ├── progress.tsx │ ├── tooltip.tsx │ ├── button.tsx │ ├── card.tsx │ ├── breadcrumb.tsx │ ├── sheet.tsx │ ├── dropdown-menu.tsx │ └── sidebar.tsx ├── common │ ├── navigation │ │ ├── NavbarClient.tsx │ │ ├── BottomBar.tsx │ │ └── HomeBar.tsx │ ├── SideLayout.tsx │ └── HomePage.tsx ├── profile │ └── user │ │ └── userprofile.tsx ├── Trending │ ├── TrendingCarousel.tsx │ └── Trending.tsx ├── Feedback │ └── Feedback.tsx └── courses │ ├── AddCourseForm.tsx │ └── PathCarouselWithCourses.tsx ├── lib ├── utils.ts └── db.ts ├── next.config.ts ├── .eslintrc.json ├── styles └── page.css ├── components.json ├── .gitignore ├── hooks └── use-mobile.tsx ├── tsconfig.json ├── context └── themecontext.tsx ├── package.json ├── tailwind.config.ts └── README.md /types/react-slick.d.ts: -------------------------------------------------------------------------------- 1 | // types/react-slick.d.ts 2 | declare module 'react-slick'; 3 | -------------------------------------------------------------------------------- /public/images/grainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiz2405/CODENEXUS/HEAD/public/images/grainy.png -------------------------------------------------------------------------------- /public/images/peepcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiz2405/CODENEXUS/HEAD/public/images/peepcn.png -------------------------------------------------------------------------------- /public/images/grainy1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiz2405/CODENEXUS/HEAD/public/images/grainy1.jpg -------------------------------------------------------------------------------- /public/images/codenexuslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moiz2405/CODENEXUS/HEAD/public/images/codenexuslogo.png -------------------------------------------------------------------------------- /app/api/auth/[auth0]/route.js: -------------------------------------------------------------------------------- 1 | // app/api/auth/[auth0]/route.js 2 | import { handleAuth } from '@auth0/nextjs-auth0'; 3 | 4 | export const GET = handleAuth(); 5 | -------------------------------------------------------------------------------- /app/profile/enrolled/page.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | const page = () => { 4 | return ( 5 |
We are working hard to bring you this page. Stay tuned!
9 |You must be logged in to view this page.
; 15 | } 16 | 17 | return{user.email}
51 |Thank you for your feedback!
72 | )} 73 |