├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG-REPORT.yml │ └── FEATURE-REQUEST.yml ├── PULL_REQUEST_TEMPLATE.md ├── config.yml └── stale.yml ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── jsconfig.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── manifest.json └── robots.txt └── src ├── App.js ├── App.test.js ├── ColorModeSwitcher.js ├── components ├── Atoms │ ├── SideButton │ │ ├── SideButton.jsx │ │ └── SideButton.scss │ └── goTop │ │ └── goTop.jsx ├── Molecules │ ├── Background │ │ └── Background.jsx │ ├── Banners │ │ ├── Announcements.jsx │ │ └── SectionAnnoucement.jsx │ ├── Download │ │ └── Download.jsx │ ├── Shortcuts │ │ └── index.jsx │ ├── SupportesCard │ │ └── index.jsx │ └── WaitlistForm │ │ ├── CustomForm.jsx │ │ └── index.jsx ├── Organism │ ├── BlogTemplate │ │ └── index.jsx │ ├── Editor │ │ ├── CurrencyData │ │ │ └── CurrencyData.json │ │ ├── Editor.scss │ │ ├── EditorForm │ │ │ ├── ClientDetails │ │ │ │ └── index.jsx │ │ │ ├── DigitalSignature │ │ │ │ └── index.jsx │ │ │ ├── InvoiceDates │ │ │ │ └── index.jsx │ │ │ ├── InvoiceImage │ │ │ │ └── index.jsx │ │ │ ├── InvoiceItems │ │ │ │ └── index.jsx │ │ │ ├── InvoiceNotes │ │ │ │ └── index.jsx │ │ │ ├── InvoiceTerms │ │ │ │ └── index.jsx │ │ │ ├── UserDetails │ │ │ │ └── index.jsx │ │ │ └── index.jsx │ │ └── index.jsx │ ├── Feature │ │ └── Feature.jsx │ ├── Footer │ │ └── Footer.jsx │ ├── Hero │ │ └── Hero.jsx │ ├── Navbar │ │ └── index.jsx │ ├── Preview │ │ ├── Preview.jsx │ │ ├── SkeletonLoading.jsx │ │ └── check-empty.js │ ├── Share │ │ └── Share.jsx │ └── Testimonials │ │ ├── TestimonialCard.jsx │ │ └── Testimonials.jsx └── Pages │ ├── 404.jsx │ ├── About.jsx │ ├── Features.jsx │ ├── FreeInvoicetor │ └── index.jsx │ ├── Help.jsx │ ├── Home.jsx │ ├── JoinWaitlist.jsx │ ├── OpenSource.jsx │ ├── Release │ ├── Release.jsx │ └── ReleaseData.jsx │ ├── Sponsor.jsx │ └── Supporters │ ├── index.jsx │ └── thanks.jsx ├── core └── InvoiceContext.jsx ├── css └── global.scss ├── data ├── FeaturesData.jsx ├── SupportersData.jsx └── TestimonialsData.jsx ├── index.jsx ├── reportWebVitals.js ├── serviceWorker.js ├── setupTests.js └── test-utils.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG-REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/.github/ISSUE_TEMPLATE/BUG-REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/ColorModeSwitcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/ColorModeSwitcher.js -------------------------------------------------------------------------------- /src/components/Atoms/SideButton/SideButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Atoms/SideButton/SideButton.jsx -------------------------------------------------------------------------------- /src/components/Atoms/SideButton/SideButton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Atoms/SideButton/SideButton.scss -------------------------------------------------------------------------------- /src/components/Atoms/goTop/goTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Atoms/goTop/goTop.jsx -------------------------------------------------------------------------------- /src/components/Molecules/Background/Background.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Molecules/Background/Background.jsx -------------------------------------------------------------------------------- /src/components/Molecules/Banners/Announcements.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Molecules/Banners/Announcements.jsx -------------------------------------------------------------------------------- /src/components/Molecules/Banners/SectionAnnoucement.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Molecules/Banners/SectionAnnoucement.jsx -------------------------------------------------------------------------------- /src/components/Molecules/Download/Download.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Molecules/Download/Download.jsx -------------------------------------------------------------------------------- /src/components/Molecules/Shortcuts/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Molecules/Shortcuts/index.jsx -------------------------------------------------------------------------------- /src/components/Molecules/SupportesCard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Molecules/SupportesCard/index.jsx -------------------------------------------------------------------------------- /src/components/Molecules/WaitlistForm/CustomForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Molecules/WaitlistForm/CustomForm.jsx -------------------------------------------------------------------------------- /src/components/Molecules/WaitlistForm/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Molecules/WaitlistForm/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/BlogTemplate/index.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Organism/Editor/CurrencyData/CurrencyData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/CurrencyData/CurrencyData.json -------------------------------------------------------------------------------- /src/components/Organism/Editor/Editor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/Editor.scss -------------------------------------------------------------------------------- /src/components/Organism/Editor/EditorForm/ClientDetails/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/EditorForm/ClientDetails/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/Editor/EditorForm/DigitalSignature/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/EditorForm/DigitalSignature/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/Editor/EditorForm/InvoiceDates/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/EditorForm/InvoiceDates/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/Editor/EditorForm/InvoiceImage/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/EditorForm/InvoiceImage/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/Editor/EditorForm/InvoiceItems/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/EditorForm/InvoiceItems/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/Editor/EditorForm/InvoiceNotes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/EditorForm/InvoiceNotes/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/Editor/EditorForm/InvoiceTerms/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/EditorForm/InvoiceTerms/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/Editor/EditorForm/UserDetails/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/EditorForm/UserDetails/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/Editor/EditorForm/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/EditorForm/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/Editor/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Editor/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/Feature/Feature.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Feature/Feature.jsx -------------------------------------------------------------------------------- /src/components/Organism/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/Organism/Hero/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Hero/Hero.jsx -------------------------------------------------------------------------------- /src/components/Organism/Navbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Navbar/index.jsx -------------------------------------------------------------------------------- /src/components/Organism/Preview/Preview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Preview/Preview.jsx -------------------------------------------------------------------------------- /src/components/Organism/Preview/SkeletonLoading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Preview/SkeletonLoading.jsx -------------------------------------------------------------------------------- /src/components/Organism/Preview/check-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Preview/check-empty.js -------------------------------------------------------------------------------- /src/components/Organism/Share/Share.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Share/Share.jsx -------------------------------------------------------------------------------- /src/components/Organism/Testimonials/TestimonialCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Testimonials/TestimonialCard.jsx -------------------------------------------------------------------------------- /src/components/Organism/Testimonials/Testimonials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Organism/Testimonials/Testimonials.jsx -------------------------------------------------------------------------------- /src/components/Pages/404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/404.jsx -------------------------------------------------------------------------------- /src/components/Pages/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/About.jsx -------------------------------------------------------------------------------- /src/components/Pages/Features.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/Features.jsx -------------------------------------------------------------------------------- /src/components/Pages/FreeInvoicetor/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/FreeInvoicetor/index.jsx -------------------------------------------------------------------------------- /src/components/Pages/Help.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/Help.jsx -------------------------------------------------------------------------------- /src/components/Pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/Home.jsx -------------------------------------------------------------------------------- /src/components/Pages/JoinWaitlist.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/JoinWaitlist.jsx -------------------------------------------------------------------------------- /src/components/Pages/OpenSource.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/OpenSource.jsx -------------------------------------------------------------------------------- /src/components/Pages/Release/Release.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/Release/Release.jsx -------------------------------------------------------------------------------- /src/components/Pages/Release/ReleaseData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/Release/ReleaseData.jsx -------------------------------------------------------------------------------- /src/components/Pages/Sponsor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/Sponsor.jsx -------------------------------------------------------------------------------- /src/components/Pages/Supporters/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/components/Pages/Supporters/index.jsx -------------------------------------------------------------------------------- /src/components/Pages/Supporters/thanks.jsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/InvoiceContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/core/InvoiceContext.jsx -------------------------------------------------------------------------------- /src/css/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/css/global.scss -------------------------------------------------------------------------------- /src/data/FeaturesData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/data/FeaturesData.jsx -------------------------------------------------------------------------------- /src/data/SupportersData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/data/SupportersData.jsx -------------------------------------------------------------------------------- /src/data/TestimonialsData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/data/TestimonialsData.jsx -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DunoLabs/invoicetor-landing/HEAD/src/test-utils.js --------------------------------------------------------------------------------