├── .env.example ├── .eslintrc.json ├── .gitignore ├── .npmrc ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── components.json ├── drizzle.config.ts ├── drizzle ├── 0000_small_fantastic_four.sql └── meta │ ├── 0000_snapshot.json │ └── _journal.json ├── next.config.js ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── icon-192x192.png ├── icon-256x256.png ├── icon-2x.png ├── icon-384x384.png ├── icon-512x512.png ├── images │ └── homepage-snapshot.png ├── manifest.json ├── sw.js └── workbox-80ca14c3.js ├── src ├── app │ ├── (auth) │ │ └── sign-in │ │ │ └── page.tsx │ ├── (dashboard-layout) │ │ ├── (app-info) │ │ │ ├── about │ │ │ │ └── page.tsx │ │ │ ├── contact │ │ │ │ └── page.tsx │ │ │ └── help │ │ │ │ └── page.tsx │ │ ├── customize │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── dashboard │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── dues │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── expense-tracker │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── investments │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── miscellaneous │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── overview │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ └── savings │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ ├── (site) │ │ ├── layout.tsx │ │ ├── onboarding │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── privacy │ │ │ └── page.tsx │ │ └── terms │ │ │ └── page.tsx │ ├── api │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ └── route.ts │ │ ├── cron │ │ │ └── route.ts │ │ ├── dues │ │ │ └── route.ts │ │ ├── excel │ │ │ └── route.ts │ │ ├── investment │ │ │ └── route.ts │ │ ├── misc │ │ │ └── route.ts │ │ ├── savings │ │ │ └── route.ts │ │ └── trpc │ │ │ └── [trpc] │ │ │ └── route.ts │ ├── favicon.ico │ ├── layout.tsx │ ├── not-found.tsx │ ├── opengraph-image.png │ ├── robots.ts │ ├── sitemap.ts │ └── styles │ │ └── globals.css ├── components │ ├── cards │ │ ├── due-card.tsx │ │ ├── expense-card.tsx │ │ ├── income-card.tsx │ │ ├── investment-card.tsx │ │ ├── misc-card.tsx │ │ └── savings-card.tsx │ ├── date-picker.tsx │ ├── days-left.tsx │ ├── due │ │ ├── due-delete.tsx │ │ ├── due-edit.tsx │ │ ├── due-paid.tsx │ │ └── due-payment.tsx │ ├── examples │ │ ├── accounts.tsx │ │ ├── due-card.tsx │ │ ├── onboading.tsx │ │ └── transfer.tsx │ ├── expense-overview.tsx │ ├── expense-table.tsx │ ├── expense │ │ ├── add-expense.tsx │ │ ├── delete-expense.tsx │ │ ├── edit-expense.tsx │ │ └── mothly-expense-sheet.tsx │ ├── features │ │ ├── dues.tsx │ │ ├── expense-tracker.tsx │ │ ├── maintaining-accounts.tsx │ │ └── transfer-money.tsx │ ├── forms │ │ ├── add-expense-form.tsx │ │ ├── auth-form.tsx │ │ ├── due-edit-form.tsx │ │ ├── due-form.tsx │ │ ├── edit-expense-form.tsx │ │ ├── invest-add-entry-form.tsx │ │ ├── invest-book-entry-form.tsx │ │ ├── investment-edit-form.tsx │ │ ├── misc-edit-form.tsx │ │ ├── misc-entry-form.tsx │ │ ├── report-form.tsx │ │ └── transfer-form.tsx │ ├── go-back.tsx │ ├── icons.tsx │ ├── investments │ │ ├── invest-add-entry.tsx │ │ ├── invest-book-entry.tsx │ │ ├── invest-edit-entry.tsx │ │ └── investment-delete-entry.tsx │ ├── layout │ │ ├── dashboard-sidebar.tsx │ │ ├── footer.tsx │ │ ├── mobile-sidebar.tsx │ │ └── navbar.tsx │ ├── logout.tsx │ ├── misc │ │ ├── misc-delete.tsx │ │ ├── misc-edit.tsx │ │ └── misc-entry.tsx │ ├── providers │ │ ├── mount-client-wrapper.tsx │ │ └── providers.tsx │ ├── report-issue.tsx │ ├── shell.tsx │ ├── site-logo.tsx │ ├── skeletons │ │ ├── expense-card.tsx │ │ ├── expense-table.tsx │ │ ├── income-card-skeleton.tsx │ │ └── infinite-cards.tsx │ ├── themes │ │ ├── theme-provider.tsx │ │ ├── theme-selector.tsx │ │ ├── theme-swticher.tsx │ │ └── theme-wrapper.tsx │ ├── transfer.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── error-card.tsx │ │ ├── label.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ └── tool-tip.tsx ├── config │ └── index.ts ├── db │ ├── index.ts │ └── schema.ts ├── env.mjs ├── hooks │ ├── use-config.ts │ ├── use-toast.ts │ └── useFaqs.tsx ├── lib │ ├── auth.ts │ ├── utils.ts │ └── validators.ts ├── middleware.ts ├── server │ ├── index.ts │ ├── routers │ │ ├── book.ts │ │ ├── dues │ │ │ ├── due-add.ts │ │ │ ├── due-delete.ts │ │ │ ├── due-edit.ts │ │ │ ├── due-paid.ts │ │ │ └── index.ts │ │ ├── entry.ts │ │ ├── investment.ts │ │ ├── misc.ts │ │ ├── report.ts │ │ ├── savings.ts │ │ ├── transfer.ts │ │ └── user.ts │ └── trpc.ts ├── themes │ ├── index.ts │ └── themes.css ├── trpc │ ├── client.ts │ └── server-client.ts └── types │ ├── index.ts │ └── next-auth.d.ts ├── tailwind.config.ts ├── tsconfig.json └── vercel.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | public-hoist-pattern[]=*@nextui-org/* -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/SECURITY.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/components.json -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /drizzle/0000_small_fantastic_four.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/drizzle/0000_small_fantastic_four.sql -------------------------------------------------------------------------------- /drizzle/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/drizzle/meta/0000_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/drizzle/meta/_journal.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/public/icon-192x192.png -------------------------------------------------------------------------------- /public/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/public/icon-256x256.png -------------------------------------------------------------------------------- /public/icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/public/icon-2x.png -------------------------------------------------------------------------------- /public/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/public/icon-384x384.png -------------------------------------------------------------------------------- /public/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/public/icon-512x512.png -------------------------------------------------------------------------------- /public/images/homepage-snapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/public/images/homepage-snapshot.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/workbox-80ca14c3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/public/workbox-80ca14c3.js -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(auth)/sign-in/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/(app-info)/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/(app-info)/about/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/(app-info)/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/(app-info)/contact/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/(app-info)/help/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/(app-info)/help/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/customize/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/customize/loading.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/customize/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/customize/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/dashboard/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/dashboard/loading.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/dues/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/dues/loading.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/dues/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/dues/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/expense-tracker/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/expense-tracker/loading.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/expense-tracker/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/expense-tracker/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/investments/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/investments/loading.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/investments/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/investments/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/layout.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/miscellaneous/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/miscellaneous/loading.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/miscellaneous/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/miscellaneous/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/overview/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/overview/loading.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/overview/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/overview/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/savings/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/savings/loading.tsx -------------------------------------------------------------------------------- /src/app/(dashboard-layout)/savings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(dashboard-layout)/savings/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(site)/layout.tsx -------------------------------------------------------------------------------- /src/app/(site)/onboarding/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(site)/onboarding/loading.tsx -------------------------------------------------------------------------------- /src/app/(site)/onboarding/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(site)/onboarding/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(site)/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(site)/privacy/page.tsx -------------------------------------------------------------------------------- /src/app/(site)/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/(site)/terms/page.tsx -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/cron/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/api/cron/route.ts -------------------------------------------------------------------------------- /src/app/api/dues/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/api/dues/route.ts -------------------------------------------------------------------------------- /src/app/api/excel/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/api/excel/route.ts -------------------------------------------------------------------------------- /src/app/api/investment/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/api/investment/route.ts -------------------------------------------------------------------------------- /src/app/api/misc/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/api/misc/route.ts -------------------------------------------------------------------------------- /src/app/api/savings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/api/savings/route.ts -------------------------------------------------------------------------------- /src/app/api/trpc/[trpc]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/api/trpc/[trpc]/route.ts -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/robots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/robots.ts -------------------------------------------------------------------------------- /src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/sitemap.ts -------------------------------------------------------------------------------- /src/app/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/app/styles/globals.css -------------------------------------------------------------------------------- /src/components/cards/due-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/cards/due-card.tsx -------------------------------------------------------------------------------- /src/components/cards/expense-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/cards/expense-card.tsx -------------------------------------------------------------------------------- /src/components/cards/income-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/cards/income-card.tsx -------------------------------------------------------------------------------- /src/components/cards/investment-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/cards/investment-card.tsx -------------------------------------------------------------------------------- /src/components/cards/misc-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/cards/misc-card.tsx -------------------------------------------------------------------------------- /src/components/cards/savings-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/cards/savings-card.tsx -------------------------------------------------------------------------------- /src/components/date-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/date-picker.tsx -------------------------------------------------------------------------------- /src/components/days-left.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/days-left.tsx -------------------------------------------------------------------------------- /src/components/due/due-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/due/due-delete.tsx -------------------------------------------------------------------------------- /src/components/due/due-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/due/due-edit.tsx -------------------------------------------------------------------------------- /src/components/due/due-paid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/due/due-paid.tsx -------------------------------------------------------------------------------- /src/components/due/due-payment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/due/due-payment.tsx -------------------------------------------------------------------------------- /src/components/examples/accounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/examples/accounts.tsx -------------------------------------------------------------------------------- /src/components/examples/due-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/examples/due-card.tsx -------------------------------------------------------------------------------- /src/components/examples/onboading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/examples/onboading.tsx -------------------------------------------------------------------------------- /src/components/examples/transfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/examples/transfer.tsx -------------------------------------------------------------------------------- /src/components/expense-overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/expense-overview.tsx -------------------------------------------------------------------------------- /src/components/expense-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/expense-table.tsx -------------------------------------------------------------------------------- /src/components/expense/add-expense.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/expense/add-expense.tsx -------------------------------------------------------------------------------- /src/components/expense/delete-expense.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/expense/delete-expense.tsx -------------------------------------------------------------------------------- /src/components/expense/edit-expense.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/expense/edit-expense.tsx -------------------------------------------------------------------------------- /src/components/expense/mothly-expense-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/expense/mothly-expense-sheet.tsx -------------------------------------------------------------------------------- /src/components/features/dues.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/features/dues.tsx -------------------------------------------------------------------------------- /src/components/features/expense-tracker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/features/expense-tracker.tsx -------------------------------------------------------------------------------- /src/components/features/maintaining-accounts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/features/maintaining-accounts.tsx -------------------------------------------------------------------------------- /src/components/features/transfer-money.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/features/transfer-money.tsx -------------------------------------------------------------------------------- /src/components/forms/add-expense-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/add-expense-form.tsx -------------------------------------------------------------------------------- /src/components/forms/auth-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/auth-form.tsx -------------------------------------------------------------------------------- /src/components/forms/due-edit-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/due-edit-form.tsx -------------------------------------------------------------------------------- /src/components/forms/due-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/due-form.tsx -------------------------------------------------------------------------------- /src/components/forms/edit-expense-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/edit-expense-form.tsx -------------------------------------------------------------------------------- /src/components/forms/invest-add-entry-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/invest-add-entry-form.tsx -------------------------------------------------------------------------------- /src/components/forms/invest-book-entry-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/invest-book-entry-form.tsx -------------------------------------------------------------------------------- /src/components/forms/investment-edit-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/investment-edit-form.tsx -------------------------------------------------------------------------------- /src/components/forms/misc-edit-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/misc-edit-form.tsx -------------------------------------------------------------------------------- /src/components/forms/misc-entry-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/misc-entry-form.tsx -------------------------------------------------------------------------------- /src/components/forms/report-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/report-form.tsx -------------------------------------------------------------------------------- /src/components/forms/transfer-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/forms/transfer-form.tsx -------------------------------------------------------------------------------- /src/components/go-back.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/go-back.tsx -------------------------------------------------------------------------------- /src/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/icons.tsx -------------------------------------------------------------------------------- /src/components/investments/invest-add-entry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/investments/invest-add-entry.tsx -------------------------------------------------------------------------------- /src/components/investments/invest-book-entry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/investments/invest-book-entry.tsx -------------------------------------------------------------------------------- /src/components/investments/invest-edit-entry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/investments/invest-edit-entry.tsx -------------------------------------------------------------------------------- /src/components/investments/investment-delete-entry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/investments/investment-delete-entry.tsx -------------------------------------------------------------------------------- /src/components/layout/dashboard-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/layout/dashboard-sidebar.tsx -------------------------------------------------------------------------------- /src/components/layout/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/layout/footer.tsx -------------------------------------------------------------------------------- /src/components/layout/mobile-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/layout/mobile-sidebar.tsx -------------------------------------------------------------------------------- /src/components/layout/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/layout/navbar.tsx -------------------------------------------------------------------------------- /src/components/logout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/logout.tsx -------------------------------------------------------------------------------- /src/components/misc/misc-delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/misc/misc-delete.tsx -------------------------------------------------------------------------------- /src/components/misc/misc-edit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/misc/misc-edit.tsx -------------------------------------------------------------------------------- /src/components/misc/misc-entry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/misc/misc-entry.tsx -------------------------------------------------------------------------------- /src/components/providers/mount-client-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/providers/mount-client-wrapper.tsx -------------------------------------------------------------------------------- /src/components/providers/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/providers/providers.tsx -------------------------------------------------------------------------------- /src/components/report-issue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/report-issue.tsx -------------------------------------------------------------------------------- /src/components/shell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/shell.tsx -------------------------------------------------------------------------------- /src/components/site-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/site-logo.tsx -------------------------------------------------------------------------------- /src/components/skeletons/expense-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/skeletons/expense-card.tsx -------------------------------------------------------------------------------- /src/components/skeletons/expense-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/skeletons/expense-table.tsx -------------------------------------------------------------------------------- /src/components/skeletons/income-card-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/skeletons/income-card-skeleton.tsx -------------------------------------------------------------------------------- /src/components/skeletons/infinite-cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/skeletons/infinite-cards.tsx -------------------------------------------------------------------------------- /src/components/themes/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/themes/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/themes/theme-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/themes/theme-selector.tsx -------------------------------------------------------------------------------- /src/components/themes/theme-swticher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/themes/theme-swticher.tsx -------------------------------------------------------------------------------- /src/components/themes/theme-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/themes/theme-wrapper.tsx -------------------------------------------------------------------------------- /src/components/transfer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/transfer.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/error-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/error-card.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/tool-tip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/components/ui/tool-tip.tsx -------------------------------------------------------------------------------- /src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/config/index.ts -------------------------------------------------------------------------------- /src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/db/index.ts -------------------------------------------------------------------------------- /src/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/db/schema.ts -------------------------------------------------------------------------------- /src/env.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/env.mjs -------------------------------------------------------------------------------- /src/hooks/use-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/hooks/use-config.ts -------------------------------------------------------------------------------- /src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /src/hooks/useFaqs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/hooks/useFaqs.tsx -------------------------------------------------------------------------------- /src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/lib/auth.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/lib/validators.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/index.ts -------------------------------------------------------------------------------- /src/server/routers/book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/book.ts -------------------------------------------------------------------------------- /src/server/routers/dues/due-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/dues/due-add.ts -------------------------------------------------------------------------------- /src/server/routers/dues/due-delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/dues/due-delete.ts -------------------------------------------------------------------------------- /src/server/routers/dues/due-edit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/dues/due-edit.ts -------------------------------------------------------------------------------- /src/server/routers/dues/due-paid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/dues/due-paid.ts -------------------------------------------------------------------------------- /src/server/routers/dues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/dues/index.ts -------------------------------------------------------------------------------- /src/server/routers/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/entry.ts -------------------------------------------------------------------------------- /src/server/routers/investment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/investment.ts -------------------------------------------------------------------------------- /src/server/routers/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/misc.ts -------------------------------------------------------------------------------- /src/server/routers/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/report.ts -------------------------------------------------------------------------------- /src/server/routers/savings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/savings.ts -------------------------------------------------------------------------------- /src/server/routers/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/transfer.ts -------------------------------------------------------------------------------- /src/server/routers/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/routers/user.ts -------------------------------------------------------------------------------- /src/server/trpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/server/trpc.ts -------------------------------------------------------------------------------- /src/themes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/themes/index.ts -------------------------------------------------------------------------------- /src/themes/themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/themes/themes.css -------------------------------------------------------------------------------- /src/trpc/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/trpc/client.ts -------------------------------------------------------------------------------- /src/trpc/server-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/trpc/server-client.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/src/types/next-auth.d.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sukrittt/Limetta/HEAD/vercel.json --------------------------------------------------------------------------------