gitextract_evyqimao/ ├── .babelrc ├── .editorconfig ├── .envrc ├── .eslintignore ├── .eslintrc.yml ├── .firebaserc ├── .github/ │ └── workflows/ │ ├── deployment-dev.yml │ ├── deployment-live.yml │ ├── deployment-pr.yml │ └── husky.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .python-version ├── .tool-versions ├── 0.0.0.0.crt ├── 0.0.0.0.key ├── 0.0.0.0.txt ├── Makefile ├── README.md ├── assets/ │ ├── js/ │ │ └── pdf.worker.js │ ├── pdf-fonts/ │ │ └── Helvetica.js │ └── variables.scss ├── components/ │ ├── About.vue │ ├── ArrowDown.vue │ ├── Attachment.vue │ ├── ChatVisualization/ │ │ ├── Chat.vue │ │ ├── ChatVisualization.vue │ │ ├── Payment.vue │ │ └── PdfDownloadPopup.vue │ ├── Content.vue │ ├── Cta.vue │ ├── DownloadPopup.vue │ ├── ExportExplainer.vue │ ├── Faq.vue │ ├── FeedbackBtn.vue │ ├── FileHandler.vue │ ├── GlobalFooter.vue │ ├── GlobalHeader.vue │ ├── GroupOthers.vue │ ├── HeaderCta.vue │ ├── HowItWorks.vue │ ├── LanguageSwitcher.vue │ ├── PdfExample.vue │ ├── Share.vue │ ├── SubscribeBtn.vue │ ├── SubscriptionChecker.vue │ ├── Testimonials.vue │ ├── TrustLogos.vue │ └── charts/ │ ├── BarChart.vue │ ├── DonughtChart.vue │ ├── EmojiCloud.vue │ ├── ExampleGraphs.vue │ ├── FunFacts.vue │ ├── LineChart.vue │ ├── RadarChart.vue │ ├── Results.vue │ ├── TextStats.vue │ └── WordCloud.vue ├── content/ │ ├── home.md │ ├── how-to-export-your-whatsapp-chat.md │ ├── whatsapp-signal.md │ └── whatsapp-to-pdf.md ├── firebase.json ├── flake.nix ├── functions/ │ ├── .gitignore │ ├── .runtimeconfig.json │ ├── backendClientRegistry.js │ ├── index.js │ └── package.json ├── jest.config.js ├── jsconfig.json ├── layouts/ │ ├── default.vue │ └── error.vue ├── localhost-key.pem ├── localhost.pem ├── nuxt.config.js ├── package.json ├── pages/ │ ├── about.vue │ ├── how-to-export-your-whatsapp-chat.vue │ ├── impressum.vue │ ├── index.vue │ ├── pwa-results.vue │ ├── subscribe.vue │ ├── switch-from-whatsapp-to-signal.vue │ ├── whatsapp-to-pdf.vue │ └── whatsapp-wrapped-year-review.vue ├── plugins/ │ ├── amcharts.js │ ├── dataframe.js │ ├── gtag.js │ └── sentry.client.config.js ├── rootCA.txt ├── static/ │ ├── CNAME │ ├── README.md │ ├── chat_example.txt │ ├── custom-sw.js │ └── example-results.json ├── tsconfig.json ├── utils/ │ ├── attachments.ts │ ├── colors.js │ ├── gtagValues.js │ ├── pdf.ts │ ├── subscription.js │ ├── transformChatData.js │ ├── translations.js │ └── utils.js └── vue-shim.d.ts