├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── enhancement.md │ ├── feature-addition.md │ ├── other.md │ ├── 🐛-bug.md │ └── 📄-documentation-issue.md └── pull_request_template.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── License ├── README.md ├── components ├── ContributorCard.tsx ├── Footer.tsx ├── HomePage.tsx ├── Layout.tsx ├── Meta.tsx ├── Navbar.tsx └── ProfileDropdown.tsx ├── database ├── connection.ts ├── early-access-users.ts └── users.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ ├── auth │ │ └── [...nextauth].ts │ ├── hello.ts │ ├── signup-early-access.ts │ └── twitter │ │ ├── fetch-tweet.ts │ │ └── user.ts ├── contributors.tsx ├── dashboard.tsx ├── early-access.tsx ├── index.tsx └── profile.tsx ├── postcss.config.js ├── public ├── Threadify.png ├── Threadify2.png ├── email-template.html ├── favicon.ico ├── logo.svg ├── threadify-logo.png └── vercel.svg ├── styles ├── Home.module.css └── globals.css ├── tailwind.config.js ├── tsconfig.json └── types └── next-auth.d.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-addition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/.github/ISSUE_TEMPLATE/feature-addition.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/🐛-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/.github/ISSUE_TEMPLATE/🐛-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/📄-documentation-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/.github/ISSUE_TEMPLATE/📄-documentation-issue.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/README.md -------------------------------------------------------------------------------- /components/ContributorCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/components/ContributorCard.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/components/HomePage.tsx -------------------------------------------------------------------------------- /components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/components/Layout.tsx -------------------------------------------------------------------------------- /components/Meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/components/Meta.tsx -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /components/ProfileDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/components/ProfileDropdown.tsx -------------------------------------------------------------------------------- /database/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/database/connection.ts -------------------------------------------------------------------------------- /database/early-access-users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/database/early-access-users.ts -------------------------------------------------------------------------------- /database/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/database/users.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/auth/[...nextauth].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/pages/api/auth/[...nextauth].ts -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/api/signup-early-access.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/pages/api/signup-early-access.ts -------------------------------------------------------------------------------- /pages/api/twitter/fetch-tweet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/pages/api/twitter/fetch-tweet.ts -------------------------------------------------------------------------------- /pages/api/twitter/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/pages/api/twitter/user.ts -------------------------------------------------------------------------------- /pages/contributors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/pages/contributors.tsx -------------------------------------------------------------------------------- /pages/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/pages/dashboard.tsx -------------------------------------------------------------------------------- /pages/early-access.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/pages/early-access.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/pages/profile.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/Threadify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/public/Threadify.png -------------------------------------------------------------------------------- /public/Threadify2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/public/Threadify2.png -------------------------------------------------------------------------------- /public/email-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/public/email-template.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/threadify-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/public/threadify-logo.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/Threadify/HEAD/types/next-auth.d.ts --------------------------------------------------------------------------------