├── .eslintrc.json ├── .github └── FUNDING.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── _config.yml ├── content ├── color-resources.json └── illustrations-resources.json ├── contentlayer.config.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico └── vercel.svg ├── scrapper ├── cli.mjs └── helpers.mjs ├── src ├── components │ ├── Card.tsx │ ├── Footer.tsx │ ├── Layout.tsx │ └── Sidebar.tsx ├── lib │ └── classNames.ts ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── index.tsx │ └── resources │ │ ├── [id].tsx │ │ └── index.tsx └── styles │ └── custom.css ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/_config.yml -------------------------------------------------------------------------------- /content/color-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/content/color-resources.json -------------------------------------------------------------------------------- /content/illustrations-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/content/illustrations-resources.json -------------------------------------------------------------------------------- /contentlayer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/contentlayer.config.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /scrapper/cli.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/scrapper/cli.mjs -------------------------------------------------------------------------------- /scrapper/helpers.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/scrapper/helpers.mjs -------------------------------------------------------------------------------- /src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/src/components/Card.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/src/components/Layout.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/lib/classNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/src/lib/classNames.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/pages/resources/[id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/src/pages/resources/[id].tsx -------------------------------------------------------------------------------- /src/pages/resources/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/src/pages/resources/index.tsx -------------------------------------------------------------------------------- /src/styles/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/src/styles/custom.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevrajDC/ResourcesHub/HEAD/yarn.lock --------------------------------------------------------------------------------