├── .env.example ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── documentation_update.yaml │ ├── feature_request.yaml │ └── general_issue.yaml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── issue-open-close.yml ├── .gitignore ├── CONTRIBUTING.md ├── Code_Of_Conduct.md ├── LICENSE ├── README.md ├── app ├── about │ └── page.tsx ├── api │ ├── auth │ │ ├── [...nextauth] │ │ │ └── route.ts │ │ ├── forgot-password │ │ │ ├── email │ │ │ │ └── route.ts │ │ │ ├── resetpassword │ │ │ │ └── route.ts │ │ │ └── verifyotp │ │ │ │ └── route.ts │ │ └── signup │ │ │ └── route.ts │ ├── bookmarks │ │ ├── [id] │ │ │ └── route.ts │ │ └── route.ts │ ├── popular │ │ └── route.ts │ ├── route.ts │ ├── search │ │ ├── issues │ │ │ └── route.ts │ │ └── repositories │ │ │ └── route.ts │ └── todos │ │ ├── [todoId] │ │ └── route.ts │ │ └── route.ts ├── auth │ ├── forgot-password │ │ ├── email │ │ │ └── page.tsx │ │ ├── otp │ │ │ └── [id] │ │ │ │ └── page.tsx │ │ └── passwordreset │ │ │ └── [id] │ │ │ └── page.tsx │ ├── signin │ │ ├── layout.tsx │ │ └── page.tsx │ └── signup │ │ ├── layout.tsx │ │ └── page.tsx ├── blog │ ├── [id] │ │ └── page.tsx │ └── page.tsx ├── contributor │ └── page.tsx ├── dashboard │ └── page.tsx ├── faq │ └── page.tsx ├── favicon.ico ├── globals.css ├── issues │ └── page.tsx ├── layout.tsx ├── page.tsx ├── popular │ ├── page.tsx │ └── repo │ │ └── page.tsx ├── provider.tsx ├── testimonial │ └── page.tsx └── user.tsx ├── components.json ├── components ├── DeleteBookmarkButton.tsx ├── GoogleTranslate.tsx ├── Progressbar.tsx ├── UserAccDropDown.tsx ├── UserImage.tsx ├── auth.tsx ├── boomarkRow.tsx ├── chatbot.tsx ├── mode-toggle.tsx ├── new-bookmark.tsx ├── page-header.tsx ├── pagination.tsx ├── submit-btn.tsx └── ui │ ├── Pageloader.tsx │ ├── accordion.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── blog-card.tsx │ ├── button.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── footer.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input.tsx │ ├── label.tsx │ ├── popover.tsx │ ├── table.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ └── use-toast.ts ├── helper └── sendMail.ts ├── lib ├── auth.ts ├── prisma.ts └── utils.ts ├── middleware.ts ├── next-sitemap.config.js ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prisma ├── migrations │ ├── 20240811213422_user │ │ └── migration.sql │ ├── 20241002185804_added_todo_schema │ │ └── migration.sql │ ├── 20241009150515_gittrace │ │ └── migration.sql │ └── migration_lock.toml ├── schema.prisma └── seed.ts ├── public ├── git2.png ├── git3.png ├── git4.png ├── github.png ├── loader.gif ├── logo.svg ├── next.svg ├── profilePic.jpg ├── robots.txt ├── sitemap-0.xml ├── sitemap.xml ├── twitter-x.svg └── vercel.svg ├── tailwind.config.ts ├── tsconfig.json └── types └── next-auth.d.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/.github/ISSUE_TEMPLATE/documentation_update.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general_issue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/.github/ISSUE_TEMPLATE/general_issue.yaml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/issue-open-close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/.github/workflows/issue-open-close.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Code_Of_Conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/Code_Of_Conduct.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/README.md -------------------------------------------------------------------------------- /app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/about/page.tsx -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/auth/forgot-password/email/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/auth/forgot-password/email/route.ts -------------------------------------------------------------------------------- /app/api/auth/forgot-password/resetpassword/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/auth/forgot-password/resetpassword/route.ts -------------------------------------------------------------------------------- /app/api/auth/forgot-password/verifyotp/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/auth/forgot-password/verifyotp/route.ts -------------------------------------------------------------------------------- /app/api/auth/signup/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/auth/signup/route.ts -------------------------------------------------------------------------------- /app/api/bookmarks/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/bookmarks/[id]/route.ts -------------------------------------------------------------------------------- /app/api/bookmarks/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/bookmarks/route.ts -------------------------------------------------------------------------------- /app/api/popular/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/popular/route.ts -------------------------------------------------------------------------------- /app/api/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/route.ts -------------------------------------------------------------------------------- /app/api/search/issues/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/search/issues/route.ts -------------------------------------------------------------------------------- /app/api/search/repositories/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/search/repositories/route.ts -------------------------------------------------------------------------------- /app/api/todos/[todoId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/todos/[todoId]/route.ts -------------------------------------------------------------------------------- /app/api/todos/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/api/todos/route.ts -------------------------------------------------------------------------------- /app/auth/forgot-password/email/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/auth/forgot-password/email/page.tsx -------------------------------------------------------------------------------- /app/auth/forgot-password/otp/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/auth/forgot-password/otp/[id]/page.tsx -------------------------------------------------------------------------------- /app/auth/forgot-password/passwordreset/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/auth/forgot-password/passwordreset/[id]/page.tsx -------------------------------------------------------------------------------- /app/auth/signin/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/auth/signin/layout.tsx -------------------------------------------------------------------------------- /app/auth/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/auth/signin/page.tsx -------------------------------------------------------------------------------- /app/auth/signup/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/auth/signup/layout.tsx -------------------------------------------------------------------------------- /app/auth/signup/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/auth/signup/page.tsx -------------------------------------------------------------------------------- /app/blog/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/blog/[id]/page.tsx -------------------------------------------------------------------------------- /app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/blog/page.tsx -------------------------------------------------------------------------------- /app/contributor/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/contributor/page.tsx -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/faq/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/faq/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/issues/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/issues/page.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/popular/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/popular/page.tsx -------------------------------------------------------------------------------- /app/popular/repo/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/popular/repo/page.tsx -------------------------------------------------------------------------------- /app/provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/provider.tsx -------------------------------------------------------------------------------- /app/testimonial/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/testimonial/page.tsx -------------------------------------------------------------------------------- /app/user.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/app/user.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components.json -------------------------------------------------------------------------------- /components/DeleteBookmarkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/DeleteBookmarkButton.tsx -------------------------------------------------------------------------------- /components/GoogleTranslate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/GoogleTranslate.tsx -------------------------------------------------------------------------------- /components/Progressbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/Progressbar.tsx -------------------------------------------------------------------------------- /components/UserAccDropDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/UserAccDropDown.tsx -------------------------------------------------------------------------------- /components/UserImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/UserImage.tsx -------------------------------------------------------------------------------- /components/auth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/auth.tsx -------------------------------------------------------------------------------- /components/boomarkRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/boomarkRow.tsx -------------------------------------------------------------------------------- /components/chatbot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/chatbot.tsx -------------------------------------------------------------------------------- /components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/mode-toggle.tsx -------------------------------------------------------------------------------- /components/new-bookmark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/new-bookmark.tsx -------------------------------------------------------------------------------- /components/page-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/page-header.tsx -------------------------------------------------------------------------------- /components/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/pagination.tsx -------------------------------------------------------------------------------- /components/submit-btn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/submit-btn.tsx -------------------------------------------------------------------------------- /components/ui/Pageloader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/Pageloader.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/blog-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/blog-card.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/footer.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /helper/sendMail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/helper/sendMail.ts -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/lib/prisma.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/middleware.ts -------------------------------------------------------------------------------- /next-sitemap.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/next-sitemap.config.js -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/migrations/20240811213422_user/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/prisma/migrations/20240811213422_user/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241002185804_added_todo_schema/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/prisma/migrations/20241002185804_added_todo_schema/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20241009150515_gittrace/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/prisma/migrations/20241009150515_gittrace/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /prisma/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/prisma/seed.ts -------------------------------------------------------------------------------- /public/git2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/git2.png -------------------------------------------------------------------------------- /public/git3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/git3.png -------------------------------------------------------------------------------- /public/git4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/git4.png -------------------------------------------------------------------------------- /public/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/github.png -------------------------------------------------------------------------------- /public/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/loader.gif -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/profilePic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/profilePic.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sitemap-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/sitemap-0.xml -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/twitter-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/twitter-x.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahulsainlll/git-trace/HEAD/types/next-auth.d.ts --------------------------------------------------------------------------------