├── .gitignore ├── Backend ├── package-lock.json ├── package.json └── server.js ├── Frontend ├── img │ ├── logo.png │ ├── send.svg │ └── user.svg ├── index.html ├── main.js ├── package-lock.json ├── package.json ├── public │ ├── box-arrow-right.svg │ ├── discord.svg │ ├── favicon.png │ ├── gear.svg │ ├── lightning-charge-fill.svg │ └── trash.svg └── style.css └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/.gitignore -------------------------------------------------------------------------------- /Backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Backend/package-lock.json -------------------------------------------------------------------------------- /Backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Backend/package.json -------------------------------------------------------------------------------- /Backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Backend/server.js -------------------------------------------------------------------------------- /Frontend/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/img/logo.png -------------------------------------------------------------------------------- /Frontend/img/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/img/send.svg -------------------------------------------------------------------------------- /Frontend/img/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/img/user.svg -------------------------------------------------------------------------------- /Frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/index.html -------------------------------------------------------------------------------- /Frontend/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/main.js -------------------------------------------------------------------------------- /Frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/package-lock.json -------------------------------------------------------------------------------- /Frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/package.json -------------------------------------------------------------------------------- /Frontend/public/box-arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/public/box-arrow-right.svg -------------------------------------------------------------------------------- /Frontend/public/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/public/discord.svg -------------------------------------------------------------------------------- /Frontend/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/public/favicon.png -------------------------------------------------------------------------------- /Frontend/public/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/public/gear.svg -------------------------------------------------------------------------------- /Frontend/public/lightning-charge-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/public/lightning-charge-fill.svg -------------------------------------------------------------------------------- /Frontend/public/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/public/trash.svg -------------------------------------------------------------------------------- /Frontend/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hablu-Programmer/ChatGPT/HEAD/Frontend/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ChatGPT 2 | 3 | subscribe hablu programmer 4 | --------------------------------------------------------------------------------