├── .gitignore ├── README.md ├── package.json ├── public ├── background.js ├── favicon.ico ├── icon.png ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.jsx ├── components │ └── Loading.jsx ├── index.css ├── index.js ├── pages │ ├── Generator.jsx │ └── Profile.jsx └── utils │ ├── chatGPT.js │ ├── localStorage.js │ └── pages.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/package.json -------------------------------------------------------------------------------- /public/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/public/background.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/src/components/Loading.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Generator.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/src/pages/Generator.jsx -------------------------------------------------------------------------------- /src/pages/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/src/pages/Profile.jsx -------------------------------------------------------------------------------- /src/utils/chatGPT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/src/utils/chatGPT.js -------------------------------------------------------------------------------- /src/utils/localStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/src/utils/localStorage.js -------------------------------------------------------------------------------- /src/utils/pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/src/utils/pages.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhancockio/LinkedInCVCreatorChatGPT/HEAD/tailwind.config.js --------------------------------------------------------------------------------