├── .DS_Store ├── .github └── pull_request_template.md ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── License ├── README.md ├── assets ├── .DS_Store ├── X_Logo.png ├── favicon.png ├── github.png ├── search.svg └── twitter.png ├── index.html ├── package.json ├── profiles └── profiles.json ├── scripts └── app.js └── styles └── index.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/X_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/assets/X_Logo.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/assets/github.png -------------------------------------------------------------------------------- /assets/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/assets/search.svg -------------------------------------------------------------------------------- /assets/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/assets/twitter.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/package.json -------------------------------------------------------------------------------- /profiles/profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/profiles/profiles.json -------------------------------------------------------------------------------- /scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/scripts/app.js -------------------------------------------------------------------------------- /styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thepushkaraj/TechCreators/HEAD/styles/index.css --------------------------------------------------------------------------------