├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── README.md ├── angular.json ├── package.json ├── server.ts ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.config.server.ts │ ├── app.config.ts │ ├── app.routes.ts │ ├── components │ │ ├── chat-dialog │ │ │ ├── chat-dialog.component.html │ │ │ ├── chat-dialog.component.scss │ │ │ ├── chat-dialog.component.spec.ts │ │ │ └── chat-dialog.component.ts │ │ ├── chat-response │ │ │ ├── chat-response.component.html │ │ │ ├── chat-response.component.scss │ │ │ ├── chat-response.component.spec.ts │ │ │ └── chat-response.component.ts │ │ └── chat-suggestions │ │ │ ├── chat-suggestions.component.html │ │ │ ├── chat-suggestions.component.scss │ │ │ ├── chat-suggestions.component.spec.ts │ │ │ └── chat-suggestions.component.ts │ ├── icons │ │ ├── arrow-left │ │ │ ├── arrow-left.component.html │ │ │ └── arrow-left.component.ts │ │ ├── arrow-right │ │ │ ├── arrow-right.component.html │ │ │ └── arrow-right.component.ts │ │ ├── curiosity │ │ │ ├── curiosity.component.html │ │ │ └── curiosity.component.ts │ │ ├── history │ │ │ ├── history.component.html │ │ │ └── history.component.ts │ │ ├── museum │ │ │ ├── museum.component.html │ │ │ └── museum.component.ts │ │ ├── question │ │ │ ├── question.component.html │ │ │ └── question.component.ts │ │ ├── send │ │ │ ├── send.component.html │ │ │ └── send.component.ts │ │ └── sparkle │ │ │ ├── sparkle.component.html │ │ │ └── sparkle.component.ts │ ├── pages │ │ ├── chat │ │ │ ├── chat.component.html │ │ │ ├── chat.component.scss │ │ │ ├── chat.component.spec.ts │ │ │ └── chat.component.ts │ │ └── home │ │ │ ├── home.component.html │ │ │ ├── home.component.scss │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ ├── services │ │ ├── message.service.spec.ts │ │ └── message.service.ts │ └── types │ │ ├── message-response.type.ts │ │ └── message.type.ts ├── assets │ ├── .gitkeep │ └── museu-home.png ├── environments │ └── environment.ts ├── favicon.ico ├── index.html ├── main.server.ts ├── main.ts └── styles.scss ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/angular.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/package.json -------------------------------------------------------------------------------- /server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/server.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.config.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/app.config.server.ts -------------------------------------------------------------------------------- /src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/app.config.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/app/components/chat-dialog/chat-dialog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-dialog/chat-dialog.component.html -------------------------------------------------------------------------------- /src/app/components/chat-dialog/chat-dialog.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-dialog/chat-dialog.component.scss -------------------------------------------------------------------------------- /src/app/components/chat-dialog/chat-dialog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-dialog/chat-dialog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/chat-dialog/chat-dialog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-dialog/chat-dialog.component.ts -------------------------------------------------------------------------------- /src/app/components/chat-response/chat-response.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-response/chat-response.component.html -------------------------------------------------------------------------------- /src/app/components/chat-response/chat-response.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-response/chat-response.component.scss -------------------------------------------------------------------------------- /src/app/components/chat-response/chat-response.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-response/chat-response.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/chat-response/chat-response.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-response/chat-response.component.ts -------------------------------------------------------------------------------- /src/app/components/chat-suggestions/chat-suggestions.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-suggestions/chat-suggestions.component.html -------------------------------------------------------------------------------- /src/app/components/chat-suggestions/chat-suggestions.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-suggestions/chat-suggestions.component.scss -------------------------------------------------------------------------------- /src/app/components/chat-suggestions/chat-suggestions.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-suggestions/chat-suggestions.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/chat-suggestions/chat-suggestions.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/components/chat-suggestions/chat-suggestions.component.ts -------------------------------------------------------------------------------- /src/app/icons/arrow-left/arrow-left.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/arrow-left/arrow-left.component.html -------------------------------------------------------------------------------- /src/app/icons/arrow-left/arrow-left.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/arrow-left/arrow-left.component.ts -------------------------------------------------------------------------------- /src/app/icons/arrow-right/arrow-right.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/arrow-right/arrow-right.component.html -------------------------------------------------------------------------------- /src/app/icons/arrow-right/arrow-right.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/arrow-right/arrow-right.component.ts -------------------------------------------------------------------------------- /src/app/icons/curiosity/curiosity.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/curiosity/curiosity.component.html -------------------------------------------------------------------------------- /src/app/icons/curiosity/curiosity.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/curiosity/curiosity.component.ts -------------------------------------------------------------------------------- /src/app/icons/history/history.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/history/history.component.html -------------------------------------------------------------------------------- /src/app/icons/history/history.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/history/history.component.ts -------------------------------------------------------------------------------- /src/app/icons/museum/museum.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/museum/museum.component.html -------------------------------------------------------------------------------- /src/app/icons/museum/museum.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/museum/museum.component.ts -------------------------------------------------------------------------------- /src/app/icons/question/question.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/question/question.component.html -------------------------------------------------------------------------------- /src/app/icons/question/question.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/question/question.component.ts -------------------------------------------------------------------------------- /src/app/icons/send/send.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/send/send.component.html -------------------------------------------------------------------------------- /src/app/icons/send/send.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/send/send.component.ts -------------------------------------------------------------------------------- /src/app/icons/sparkle/sparkle.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/sparkle/sparkle.component.html -------------------------------------------------------------------------------- /src/app/icons/sparkle/sparkle.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/icons/sparkle/sparkle.component.ts -------------------------------------------------------------------------------- /src/app/pages/chat/chat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/pages/chat/chat.component.html -------------------------------------------------------------------------------- /src/app/pages/chat/chat.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/pages/chat/chat.component.scss -------------------------------------------------------------------------------- /src/app/pages/chat/chat.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/pages/chat/chat.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/chat/chat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/pages/chat/chat.component.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/pages/home/home.component.html -------------------------------------------------------------------------------- /src/app/pages/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/pages/home/home.component.scss -------------------------------------------------------------------------------- /src/app/pages/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/pages/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/pages/home/home.component.ts -------------------------------------------------------------------------------- /src/app/services/message.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/services/message.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/message.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/services/message.service.ts -------------------------------------------------------------------------------- /src/app/types/message-response.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/types/message-response.type.ts -------------------------------------------------------------------------------- /src/app/types/message.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/app/types/message.type.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/museu-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/assets/museu-home.png -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/main.server.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/src/styles.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernanda-Kipper/chatbot-frontend/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------