├── .deepsource.toml ├── .eslintrc.json ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── README.md ├── common ├── components │ ├── Logo │ │ └── index.tsx │ └── Sidebar │ │ ├── __sidebarDetails.js │ │ └── index.tsx ├── types │ ├── auth │ │ ├── login │ │ │ └── index.d.ts │ │ └── signup │ │ │ └── index.d.ts │ └── components │ │ ├── base-motion-float │ │ └── index.d.ts │ │ └── base-seo │ │ └── index.d.ts └── utils │ └── theme.ts ├── config └── firebase │ └── index.ts ├── context └── auth │ └── AuthContext.tsx ├── helpers └── helpers.ts ├── modules └── components │ ├── BaseBox.tsx │ ├── BaseBreadcrumb.tsx │ ├── BaseGradientRadix.tsx │ ├── BaseMotionFallInPlace.tsx │ ├── BaseMotionFloat.tsx │ └── BaseSeo.tsx ├── next.config.js ├── package.json ├── pages ├── 404.tsx ├── 500.tsx ├── _app.tsx ├── _document.tsx ├── about.tsx ├── api │ └── hello.ts ├── app │ ├── dashboard │ │ ├── budgets.tsx │ │ ├── index.tsx │ │ ├── invoices.tsx │ │ ├── reports.tsx │ │ └── schedules.tsx │ └── settings │ │ ├── category │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── preferences.tsx │ │ └── profile.tsx ├── brand-assets.tsx ├── features.tsx ├── help.tsx ├── index.tsx ├── login.tsx ├── opensource.tsx ├── signup.tsx └── sponsor.tsx ├── postcss.config.js ├── public ├── assets │ ├── circle-pattern.svg │ ├── hero-brick.png │ ├── hero-business.svg │ ├── hero-meter.png │ ├── hero-payment.png │ ├── hero-plate.png │ ├── hero-star.png │ ├── invoice.png │ └── reports.png ├── brand-background.svg ├── favicon.ico └── vercel.svg ├── routers └── ProtectedRouter.tsx ├── services ├── firebase │ └── index.ts └── mixpanel │ └── index.ts ├── styles ├── base │ ├── index.css │ ├── index.css.map │ └── index.scss ├── core │ ├── colors │ │ ├── index.css │ │ ├── index.css.map │ │ └── index.scss │ ├── icons │ │ ├── index.css │ │ ├── index.css.map │ │ └── index.scss │ ├── index.css │ ├── index.css.map │ ├── index.scss │ ├── resetter │ │ ├── index.css │ │ ├── index.css.map │ │ └── index.scss │ └── typography │ │ ├── index.css │ │ ├── index.css.map │ │ └── index.scss ├── index.css ├── index.css.map └── index.scss ├── tailwind.config.js ├── tsconfig.json └── website ├── ColorModeSwitcher └── index.tsx ├── Footer ├── Footer.tsx └── __footerLinkDetails.ts ├── Header ├── CollapseMenu.tsx ├── NavItems.tsx ├── __linkDeatils.ts └── index.tsx ├── Hero ├── MainHeroImage.tsx └── index.tsx └── StargazerBanner └── StargazerBanner.tsx /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/README.md -------------------------------------------------------------------------------- /common/components/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/common/components/Logo/index.tsx -------------------------------------------------------------------------------- /common/components/Sidebar/__sidebarDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/common/components/Sidebar/__sidebarDetails.js -------------------------------------------------------------------------------- /common/components/Sidebar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/common/components/Sidebar/index.tsx -------------------------------------------------------------------------------- /common/types/auth/login/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/common/types/auth/login/index.d.ts -------------------------------------------------------------------------------- /common/types/auth/signup/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/common/types/auth/signup/index.d.ts -------------------------------------------------------------------------------- /common/types/components/base-motion-float/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/common/types/components/base-motion-float/index.d.ts -------------------------------------------------------------------------------- /common/types/components/base-seo/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/common/types/components/base-seo/index.d.ts -------------------------------------------------------------------------------- /common/utils/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/common/utils/theme.ts -------------------------------------------------------------------------------- /config/firebase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/config/firebase/index.ts -------------------------------------------------------------------------------- /context/auth/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/context/auth/AuthContext.tsx -------------------------------------------------------------------------------- /helpers/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/helpers/helpers.ts -------------------------------------------------------------------------------- /modules/components/BaseBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/modules/components/BaseBox.tsx -------------------------------------------------------------------------------- /modules/components/BaseBreadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/modules/components/BaseBreadcrumb.tsx -------------------------------------------------------------------------------- /modules/components/BaseGradientRadix.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/modules/components/BaseGradientRadix.tsx -------------------------------------------------------------------------------- /modules/components/BaseMotionFallInPlace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/modules/components/BaseMotionFallInPlace.tsx -------------------------------------------------------------------------------- /modules/components/BaseMotionFloat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/modules/components/BaseMotionFloat.tsx -------------------------------------------------------------------------------- /modules/components/BaseSeo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/modules/components/BaseSeo.tsx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/500.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/500.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/about.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/about.tsx -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/app/dashboard/budgets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/app/dashboard/budgets.tsx -------------------------------------------------------------------------------- /pages/app/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/app/dashboard/index.tsx -------------------------------------------------------------------------------- /pages/app/dashboard/invoices.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/app/dashboard/invoices.tsx -------------------------------------------------------------------------------- /pages/app/dashboard/reports.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/app/dashboard/reports.tsx -------------------------------------------------------------------------------- /pages/app/dashboard/schedules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/app/dashboard/schedules.tsx -------------------------------------------------------------------------------- /pages/app/settings/category/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/app/settings/category/index.tsx -------------------------------------------------------------------------------- /pages/app/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/app/settings/index.tsx -------------------------------------------------------------------------------- /pages/app/settings/preferences.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/app/settings/preferences.tsx -------------------------------------------------------------------------------- /pages/app/settings/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/app/settings/profile.tsx -------------------------------------------------------------------------------- /pages/brand-assets.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/brand-assets.tsx -------------------------------------------------------------------------------- /pages/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/features.tsx -------------------------------------------------------------------------------- /pages/help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/help.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/login.tsx -------------------------------------------------------------------------------- /pages/opensource.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/opensource.tsx -------------------------------------------------------------------------------- /pages/signup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/signup.tsx -------------------------------------------------------------------------------- /pages/sponsor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/pages/sponsor.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/circle-pattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/assets/circle-pattern.svg -------------------------------------------------------------------------------- /public/assets/hero-brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/assets/hero-brick.png -------------------------------------------------------------------------------- /public/assets/hero-business.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/assets/hero-business.svg -------------------------------------------------------------------------------- /public/assets/hero-meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/assets/hero-meter.png -------------------------------------------------------------------------------- /public/assets/hero-payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/assets/hero-payment.png -------------------------------------------------------------------------------- /public/assets/hero-plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/assets/hero-plate.png -------------------------------------------------------------------------------- /public/assets/hero-star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/assets/hero-star.png -------------------------------------------------------------------------------- /public/assets/invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/assets/invoice.png -------------------------------------------------------------------------------- /public/assets/reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/assets/reports.png -------------------------------------------------------------------------------- /public/brand-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/brand-background.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /routers/ProtectedRouter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/routers/ProtectedRouter.tsx -------------------------------------------------------------------------------- /services/firebase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/services/firebase/index.ts -------------------------------------------------------------------------------- /services/mixpanel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/services/mixpanel/index.ts -------------------------------------------------------------------------------- /styles/base/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/base/index.css -------------------------------------------------------------------------------- /styles/base/index.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/base/index.css.map -------------------------------------------------------------------------------- /styles/base/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/base/index.scss -------------------------------------------------------------------------------- /styles/core/colors/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/colors/index.css -------------------------------------------------------------------------------- /styles/core/colors/index.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/colors/index.css.map -------------------------------------------------------------------------------- /styles/core/colors/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/colors/index.scss -------------------------------------------------------------------------------- /styles/core/icons/index.css: -------------------------------------------------------------------------------- 1 | /*# sourceMappingURL=index.css.map */ -------------------------------------------------------------------------------- /styles/core/icons/index.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/icons/index.css.map -------------------------------------------------------------------------------- /styles/core/icons/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/core/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/index.css -------------------------------------------------------------------------------- /styles/core/index.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/index.css.map -------------------------------------------------------------------------------- /styles/core/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/index.scss -------------------------------------------------------------------------------- /styles/core/resetter/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/resetter/index.css -------------------------------------------------------------------------------- /styles/core/resetter/index.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/resetter/index.css.map -------------------------------------------------------------------------------- /styles/core/resetter/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/resetter/index.scss -------------------------------------------------------------------------------- /styles/core/typography/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/typography/index.css -------------------------------------------------------------------------------- /styles/core/typography/index.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/typography/index.css.map -------------------------------------------------------------------------------- /styles/core/typography/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/core/typography/index.scss -------------------------------------------------------------------------------- /styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/index.css -------------------------------------------------------------------------------- /styles/index.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/index.css.map -------------------------------------------------------------------------------- /styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/styles/index.scss -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/ColorModeSwitcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/website/ColorModeSwitcher/index.tsx -------------------------------------------------------------------------------- /website/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/website/Footer/Footer.tsx -------------------------------------------------------------------------------- /website/Footer/__footerLinkDetails.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/website/Footer/__footerLinkDetails.ts -------------------------------------------------------------------------------- /website/Header/CollapseMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/website/Header/CollapseMenu.tsx -------------------------------------------------------------------------------- /website/Header/NavItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/website/Header/NavItems.tsx -------------------------------------------------------------------------------- /website/Header/__linkDeatils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/website/Header/__linkDeatils.ts -------------------------------------------------------------------------------- /website/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/website/Header/index.tsx -------------------------------------------------------------------------------- /website/Hero/MainHeroImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/website/Hero/MainHeroImage.tsx -------------------------------------------------------------------------------- /website/Hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/website/Hero/index.tsx -------------------------------------------------------------------------------- /website/StargazerBanner/StargazerBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spendify-io/spendify-frontend/HEAD/website/StargazerBanner/StargazerBanner.tsx --------------------------------------------------------------------------------