├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── api │ └── auth │ │ └── [...nextauth] │ │ └── route.ts ├── components │ ├── ContactUs.tsx │ ├── Footer.tsx │ ├── Hero.tsx │ ├── HeroCards.tsx │ ├── Mode.tsx │ ├── Navbar.tsx │ ├── NotFound.tsx │ ├── ScrollSection.tsx │ ├── Stats.tsx │ ├── Steps.tsx │ ├── theme-provider.tsx │ ├── ui │ │ ├── container-scroll-animation.tsx │ │ ├── floating-navbar.tsx │ │ ├── lamp-container.tsx │ │ ├── text-generate-effect.tsx │ │ └── wavy-background.tsx │ ├── user-account-nav.tsx │ ├── user-avatar.tsx │ └── user-nav.tsx ├── contact │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx ├── lib │ ├── auth.ts │ └── session.ts ├── not-found.tsx ├── page.tsx └── signIn │ └── page.tsx ├── assets ├── 1.png ├── 2.png ├── 3.png ├── 4.png └── 5.png ├── components.json ├── components └── ui │ ├── avatar.tsx │ ├── button.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── input.tsx │ ├── label.tsx │ └── textarea.tsx ├── config └── links.ts ├── env.example ├── env.mjs ├── lib └── utils.ts ├── next.config.mjs ├── package.json ├── postcss.config.js ├── prisma └── schema.prisma ├── public ├── assets │ ├── backImg.png │ └── backImgg.png ├── next.svg └── vercel.svg ├── tailwind.config.ts ├── tsconfig.json ├── types ├── index.d.ts └── next-auth.d.ts └── utils ├── cn.ts └── db.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "WillLuke.nextjs.hasPrompted": true 3 | } 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/README.md -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/components/ContactUs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/ContactUs.tsx -------------------------------------------------------------------------------- /app/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/Footer.tsx -------------------------------------------------------------------------------- /app/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/Hero.tsx -------------------------------------------------------------------------------- /app/components/HeroCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/HeroCards.tsx -------------------------------------------------------------------------------- /app/components/Mode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/Mode.tsx -------------------------------------------------------------------------------- /app/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/Navbar.tsx -------------------------------------------------------------------------------- /app/components/NotFound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/NotFound.tsx -------------------------------------------------------------------------------- /app/components/ScrollSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/ScrollSection.tsx -------------------------------------------------------------------------------- /app/components/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/Stats.tsx -------------------------------------------------------------------------------- /app/components/Steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/Steps.tsx -------------------------------------------------------------------------------- /app/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/theme-provider.tsx -------------------------------------------------------------------------------- /app/components/ui/container-scroll-animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/ui/container-scroll-animation.tsx -------------------------------------------------------------------------------- /app/components/ui/floating-navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/ui/floating-navbar.tsx -------------------------------------------------------------------------------- /app/components/ui/lamp-container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/ui/lamp-container.tsx -------------------------------------------------------------------------------- /app/components/ui/text-generate-effect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/ui/text-generate-effect.tsx -------------------------------------------------------------------------------- /app/components/ui/wavy-background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/ui/wavy-background.tsx -------------------------------------------------------------------------------- /app/components/user-account-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/user-account-nav.tsx -------------------------------------------------------------------------------- /app/components/user-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/user-avatar.tsx -------------------------------------------------------------------------------- /app/components/user-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/components/user-nav.tsx -------------------------------------------------------------------------------- /app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/contact/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/lib/auth.ts -------------------------------------------------------------------------------- /app/lib/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/lib/session.ts -------------------------------------------------------------------------------- /app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/not-found.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/signIn/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/app/signIn/page.tsx -------------------------------------------------------------------------------- /assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/assets/1.png -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/assets/2.png -------------------------------------------------------------------------------- /assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/assets/3.png -------------------------------------------------------------------------------- /assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/assets/4.png -------------------------------------------------------------------------------- /assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/assets/5.png -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/components.json -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /config/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/config/links.ts -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/env.example -------------------------------------------------------------------------------- /env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/env.mjs -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/assets/backImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/public/assets/backImg.png -------------------------------------------------------------------------------- /public/assets/backImgg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/public/assets/backImgg.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/types/next-auth.d.ts -------------------------------------------------------------------------------- /utils/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/utils/cn.ts -------------------------------------------------------------------------------- /utils/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/The-Xiting-Way/DevXClub/HEAD/utils/db.ts --------------------------------------------------------------------------------