├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── MIGRATION_SUMMARY.md ├── README.md ├── app ├── about │ └── page.tsx ├── admin │ ├── customers │ │ └── page.tsx │ ├── ledger │ │ ├── new │ │ │ └── page.tsx │ │ └── page.tsx │ ├── overdue │ │ └── page.tsx │ ├── page.tsx │ ├── products │ │ ├── new │ │ │ └── page.tsx │ │ └── page.tsx │ ├── profile │ │ └── page.tsx │ ├── settings │ │ └── page.tsx │ └── users │ │ ├── [id] │ │ ├── edit │ │ │ └── page.tsx │ │ └── view │ │ │ └── page.tsx │ │ ├── new │ │ └── page.tsx │ │ └── page.tsx ├── api │ ├── auth │ │ ├── [...nextauth] │ │ │ └── route.ts │ │ ├── forgot-password │ │ │ └── route.ts │ │ ├── register │ │ │ └── route.ts │ │ ├── reset-password │ │ │ └── route.ts │ │ └── verify │ │ │ └── route.ts │ ├── cron │ │ └── update-overdue │ │ │ └── route.ts │ ├── customers │ │ ├── [id] │ │ │ ├── credit-settings │ │ │ │ └── route.ts │ │ │ ├── route.ts │ │ │ └── view │ │ │ │ └── route.ts │ │ ├── credit-settings │ │ │ └── route.ts │ │ └── route.ts │ ├── email │ │ └── reset-password │ │ │ └── route.ts │ ├── invoices │ │ └── [id] │ │ │ ├── download │ │ │ └── route.ts │ │ │ └── route.ts │ ├── ledger │ │ ├── [id] │ │ │ ├── mark-paid │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── customer │ │ │ └── [id] │ │ │ │ ├── balance │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ ├── route.ts │ │ └── settle-payment │ │ │ └── route.ts │ ├── overdue │ │ ├── route.ts │ │ └── settings │ │ │ └── route.ts │ ├── products │ │ ├── [id] │ │ │ └── route.ts │ │ └── route.ts │ ├── reports │ │ ├── overdue │ │ │ └── route.ts │ │ ├── overview │ │ │ └── route.ts │ │ ├── products │ │ │ └── route.ts │ │ ├── recent-sales │ │ │ └── route.ts │ │ └── revenue │ │ │ └── route.ts │ ├── upload │ │ └── route.ts │ └── users │ │ ├── [id] │ │ └── route.ts │ │ └── route.ts ├── auth │ ├── forgot-password │ │ └── page.tsx │ ├── login │ │ ├── loading.tsx │ │ └── page.tsx │ ├── register │ │ └── page.tsx │ └── reset-password │ │ ├── loading.tsx │ │ └── page.tsx ├── blog │ └── page.tsx ├── careers │ └── page.tsx ├── changelog │ └── page.tsx ├── contact │ └── page.tsx ├── cookie │ └── page.tsx ├── customers │ ├── [id] │ │ ├── credit-settings │ │ │ └── page.tsx │ │ ├── edit │ │ │ └── page.tsx │ │ └── view │ │ │ └── page.tsx │ ├── new │ │ └── page.tsx │ └── page.tsx ├── dashboard │ └── page.tsx ├── favicon.ico ├── features │ └── page.tsx ├── globals.css ├── invoices │ └── [id] │ │ └── page.tsx ├── layout.tsx ├── ledger │ ├── [id] │ │ ├── edit │ │ │ └── page.tsx │ │ └── view │ │ │ └── page.tsx │ ├── new-entry │ │ ├── loading.tsx │ │ └── page.tsx │ └── page.tsx ├── overdue │ └── page.tsx ├── page.tsx ├── policy │ └── page.tsx ├── pricing │ └── page.tsx ├── privacy │ └── page.tsx ├── products │ ├── [id] │ │ ├── edit │ │ │ └── page.tsx │ │ └── view │ │ │ └── page.tsx │ ├── new │ │ └── page.tsx │ └── page.tsx ├── profile │ └── page.tsx ├── reports │ └── page.tsx ├── roadmap │ └── page.tsx ├── settings │ └── page.tsx └── terms │ └── page.tsx ├── components.json ├── components ├── PrintButton.tsx ├── admin │ ├── admin-activity.tsx │ ├── admin-customers-table.tsx │ ├── admin-ledger-table.tsx │ ├── admin-overdue-table.tsx │ ├── admin-products-table.tsx │ ├── admin-stats.tsx │ ├── admin-users-table.tsx │ ├── company-settings-form.tsx │ ├── edit-user-form.tsx │ └── new-user-form.tsx ├── auth-provider.tsx ├── customers │ └── customers-table.tsx ├── dashboard │ ├── dashboard-skeleton.tsx │ ├── overdue-widget.tsx │ ├── overview.tsx │ └── recent-sales.tsx ├── invoices │ └── invoice-content.tsx ├── landing │ ├── landing-features.tsx │ ├── landing-footer.tsx │ ├── landing-hero.tsx │ ├── landing-navbar.tsx │ ├── landing-pricing.tsx │ └── landing-testimonials.tsx ├── ledger │ ├── credit-limit-settings.tsx │ ├── customer-ledger-view.tsx │ ├── customer-sidebar.tsx │ ├── edit-ledger-entry-form.tsx │ ├── ledger-skeleton.tsx │ └── ledger-table.tsx ├── products │ └── products-table.tsx ├── reports │ ├── credit-settings-report.tsx │ ├── overdue-report.tsx │ ├── product-report.tsx │ └── revenue-report.tsx ├── side-nav.tsx ├── theme-provider.tsx ├── theme-toggle.tsx ├── top-nav.tsx └── ui │ ├── StarRating.tsx │ ├── accordion.tsx │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── aspect-ratio.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── breadcrumb.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── carousel.tsx │ ├── chart.tsx │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── dialog.tsx │ ├── drawer.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input-otp.tsx │ ├── input.tsx │ ├── label.tsx │ ├── menubar.tsx │ ├── navigation-menu.tsx │ ├── pagination.tsx │ ├── popover.tsx │ ├── print-button.tsx │ ├── progress.tsx │ ├── radio-group.tsx │ ├── resizable.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── sidebar.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── sonner.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── toggle-group.tsx │ ├── toggle.tsx │ ├── tooltip.tsx │ ├── use-mobile.tsx │ └── use-toast.ts ├── hooks ├── use-mobile.tsx └── use-toast.ts ├── lib ├── actions.ts ├── auth.ts ├── db.ts ├── indexed-db.ts ├── mail.ts ├── permissions.ts ├── security.ts └── utils.ts ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── prisma.config.mjs ├── prisma ├── migrations │ ├── 20251121165340_init │ │ └── migration.sql │ ├── 20251127154545_add_verification_token │ │ └── migration.sql │ └── migration_lock.toml ├── prisma.config.ts.bak └── schema.prisma ├── proxy.ts ├── public ├── ledger.avif ├── placeholder-logo.png ├── placeholder-logo.svg ├── placeholder-user.jpg ├── placeholder.jpg ├── placeholder.svg └── uploads │ ├── 2e912cb8-2ecb-44ac-b23b-81d00c391358-untitled.png │ └── a70d24d9-8ce8-4e60-9c69-11501322c817-eye_logo_for_my_business_intelligence_ai.jpeg ├── styles └── globals.css ├── tailwind.config.ts ├── tsconfig.json ├── types └── next-auth.d.ts ├── update-actions-script.txt ├── update-nextauth-v5.ps1 └── utils ├── constant.ts └── getCurrencySymbol.ts /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/MIGRATION_SUMMARY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/README.md -------------------------------------------------------------------------------- /app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/about/page.tsx -------------------------------------------------------------------------------- /app/admin/customers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/customers/page.tsx -------------------------------------------------------------------------------- /app/admin/ledger/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/ledger/new/page.tsx -------------------------------------------------------------------------------- /app/admin/ledger/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/ledger/page.tsx -------------------------------------------------------------------------------- /app/admin/overdue/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/overdue/page.tsx -------------------------------------------------------------------------------- /app/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/page.tsx -------------------------------------------------------------------------------- /app/admin/products/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/products/new/page.tsx -------------------------------------------------------------------------------- /app/admin/products/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/products/page.tsx -------------------------------------------------------------------------------- /app/admin/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/profile/page.tsx -------------------------------------------------------------------------------- /app/admin/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/settings/page.tsx -------------------------------------------------------------------------------- /app/admin/users/[id]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/users/[id]/edit/page.tsx -------------------------------------------------------------------------------- /app/admin/users/[id]/view/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/users/[id]/view/page.tsx -------------------------------------------------------------------------------- /app/admin/users/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/users/new/page.tsx -------------------------------------------------------------------------------- /app/admin/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/admin/users/page.tsx -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/auth/forgot-password/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/auth/forgot-password/route.ts -------------------------------------------------------------------------------- /app/api/auth/register/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/auth/register/route.ts -------------------------------------------------------------------------------- /app/api/auth/reset-password/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/auth/reset-password/route.ts -------------------------------------------------------------------------------- /app/api/auth/verify/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/auth/verify/route.ts -------------------------------------------------------------------------------- /app/api/cron/update-overdue/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/cron/update-overdue/route.ts -------------------------------------------------------------------------------- /app/api/customers/[id]/credit-settings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/customers/[id]/credit-settings/route.ts -------------------------------------------------------------------------------- /app/api/customers/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/customers/[id]/route.ts -------------------------------------------------------------------------------- /app/api/customers/[id]/view/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/customers/[id]/view/route.ts -------------------------------------------------------------------------------- /app/api/customers/credit-settings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/customers/credit-settings/route.ts -------------------------------------------------------------------------------- /app/api/customers/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/customers/route.ts -------------------------------------------------------------------------------- /app/api/email/reset-password/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/email/reset-password/route.ts -------------------------------------------------------------------------------- /app/api/invoices/[id]/download/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/invoices/[id]/download/route.ts -------------------------------------------------------------------------------- /app/api/invoices/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/invoices/[id]/route.ts -------------------------------------------------------------------------------- /app/api/ledger/[id]/mark-paid/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/ledger/[id]/mark-paid/route.ts -------------------------------------------------------------------------------- /app/api/ledger/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/ledger/[id]/route.ts -------------------------------------------------------------------------------- /app/api/ledger/customer/[id]/balance/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/ledger/customer/[id]/balance/route.ts -------------------------------------------------------------------------------- /app/api/ledger/customer/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/ledger/customer/[id]/route.ts -------------------------------------------------------------------------------- /app/api/ledger/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/ledger/route.ts -------------------------------------------------------------------------------- /app/api/ledger/settle-payment/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/ledger/settle-payment/route.ts -------------------------------------------------------------------------------- /app/api/overdue/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/overdue/route.ts -------------------------------------------------------------------------------- /app/api/overdue/settings/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/overdue/settings/route.ts -------------------------------------------------------------------------------- /app/api/products/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/products/[id]/route.ts -------------------------------------------------------------------------------- /app/api/products/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/products/route.ts -------------------------------------------------------------------------------- /app/api/reports/overdue/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/reports/overdue/route.ts -------------------------------------------------------------------------------- /app/api/reports/overview/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/reports/overview/route.ts -------------------------------------------------------------------------------- /app/api/reports/products/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/reports/products/route.ts -------------------------------------------------------------------------------- /app/api/reports/recent-sales/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/reports/recent-sales/route.ts -------------------------------------------------------------------------------- /app/api/reports/revenue/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/reports/revenue/route.ts -------------------------------------------------------------------------------- /app/api/upload/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/upload/route.ts -------------------------------------------------------------------------------- /app/api/users/[id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/users/[id]/route.ts -------------------------------------------------------------------------------- /app/api/users/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/api/users/route.ts -------------------------------------------------------------------------------- /app/auth/forgot-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/auth/forgot-password/page.tsx -------------------------------------------------------------------------------- /app/auth/login/loading.tsx: -------------------------------------------------------------------------------- 1 | export default function Loading() { 2 | return null 3 | } 4 | -------------------------------------------------------------------------------- /app/auth/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/auth/login/page.tsx -------------------------------------------------------------------------------- /app/auth/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/auth/register/page.tsx -------------------------------------------------------------------------------- /app/auth/reset-password/loading.tsx: -------------------------------------------------------------------------------- 1 | export default function Loading() { 2 | return null 3 | } 4 | -------------------------------------------------------------------------------- /app/auth/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/auth/reset-password/page.tsx -------------------------------------------------------------------------------- /app/blog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/blog/page.tsx -------------------------------------------------------------------------------- /app/careers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/careers/page.tsx -------------------------------------------------------------------------------- /app/changelog/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/changelog/page.tsx -------------------------------------------------------------------------------- /app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/contact/page.tsx -------------------------------------------------------------------------------- /app/cookie/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/cookie/page.tsx -------------------------------------------------------------------------------- /app/customers/[id]/credit-settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/customers/[id]/credit-settings/page.tsx -------------------------------------------------------------------------------- /app/customers/[id]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/customers/[id]/edit/page.tsx -------------------------------------------------------------------------------- /app/customers/[id]/view/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/customers/[id]/view/page.tsx -------------------------------------------------------------------------------- /app/customers/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/customers/new/page.tsx -------------------------------------------------------------------------------- /app/customers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/customers/page.tsx -------------------------------------------------------------------------------- /app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/dashboard/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/features/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/features/page.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/invoices/[id]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/invoices/[id]/page.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/ledger/[id]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/ledger/[id]/edit/page.tsx -------------------------------------------------------------------------------- /app/ledger/[id]/view/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/ledger/[id]/view/page.tsx -------------------------------------------------------------------------------- /app/ledger/new-entry/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/ledger/new-entry/loading.tsx -------------------------------------------------------------------------------- /app/ledger/new-entry/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/ledger/new-entry/page.tsx -------------------------------------------------------------------------------- /app/ledger/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/ledger/page.tsx -------------------------------------------------------------------------------- /app/overdue/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/overdue/page.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/policy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/policy/page.tsx -------------------------------------------------------------------------------- /app/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/pricing/page.tsx -------------------------------------------------------------------------------- /app/privacy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/privacy/page.tsx -------------------------------------------------------------------------------- /app/products/[id]/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/products/[id]/edit/page.tsx -------------------------------------------------------------------------------- /app/products/[id]/view/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/products/[id]/view/page.tsx -------------------------------------------------------------------------------- /app/products/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/products/new/page.tsx -------------------------------------------------------------------------------- /app/products/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/products/page.tsx -------------------------------------------------------------------------------- /app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/profile/page.tsx -------------------------------------------------------------------------------- /app/reports/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/reports/page.tsx -------------------------------------------------------------------------------- /app/roadmap/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/roadmap/page.tsx -------------------------------------------------------------------------------- /app/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/settings/page.tsx -------------------------------------------------------------------------------- /app/terms/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/app/terms/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components.json -------------------------------------------------------------------------------- /components/PrintButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/PrintButton.tsx -------------------------------------------------------------------------------- /components/admin/admin-activity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/admin/admin-activity.tsx -------------------------------------------------------------------------------- /components/admin/admin-customers-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/admin/admin-customers-table.tsx -------------------------------------------------------------------------------- /components/admin/admin-ledger-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/admin/admin-ledger-table.tsx -------------------------------------------------------------------------------- /components/admin/admin-overdue-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/admin/admin-overdue-table.tsx -------------------------------------------------------------------------------- /components/admin/admin-products-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/admin/admin-products-table.tsx -------------------------------------------------------------------------------- /components/admin/admin-stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/admin/admin-stats.tsx -------------------------------------------------------------------------------- /components/admin/admin-users-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/admin/admin-users-table.tsx -------------------------------------------------------------------------------- /components/admin/company-settings-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/admin/company-settings-form.tsx -------------------------------------------------------------------------------- /components/admin/edit-user-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/admin/edit-user-form.tsx -------------------------------------------------------------------------------- /components/admin/new-user-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/admin/new-user-form.tsx -------------------------------------------------------------------------------- /components/auth-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/auth-provider.tsx -------------------------------------------------------------------------------- /components/customers/customers-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/customers/customers-table.tsx -------------------------------------------------------------------------------- /components/dashboard/dashboard-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/dashboard/dashboard-skeleton.tsx -------------------------------------------------------------------------------- /components/dashboard/overdue-widget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/dashboard/overdue-widget.tsx -------------------------------------------------------------------------------- /components/dashboard/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/dashboard/overview.tsx -------------------------------------------------------------------------------- /components/dashboard/recent-sales.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/dashboard/recent-sales.tsx -------------------------------------------------------------------------------- /components/invoices/invoice-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/invoices/invoice-content.tsx -------------------------------------------------------------------------------- /components/landing/landing-features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/landing/landing-features.tsx -------------------------------------------------------------------------------- /components/landing/landing-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/landing/landing-footer.tsx -------------------------------------------------------------------------------- /components/landing/landing-hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/landing/landing-hero.tsx -------------------------------------------------------------------------------- /components/landing/landing-navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/landing/landing-navbar.tsx -------------------------------------------------------------------------------- /components/landing/landing-pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/landing/landing-pricing.tsx -------------------------------------------------------------------------------- /components/landing/landing-testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/landing/landing-testimonials.tsx -------------------------------------------------------------------------------- /components/ledger/credit-limit-settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ledger/credit-limit-settings.tsx -------------------------------------------------------------------------------- /components/ledger/customer-ledger-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ledger/customer-ledger-view.tsx -------------------------------------------------------------------------------- /components/ledger/customer-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ledger/customer-sidebar.tsx -------------------------------------------------------------------------------- /components/ledger/edit-ledger-entry-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ledger/edit-ledger-entry-form.tsx -------------------------------------------------------------------------------- /components/ledger/ledger-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ledger/ledger-skeleton.tsx -------------------------------------------------------------------------------- /components/ledger/ledger-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ledger/ledger-table.tsx -------------------------------------------------------------------------------- /components/products/products-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/products/products-table.tsx -------------------------------------------------------------------------------- /components/reports/credit-settings-report.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/reports/credit-settings-report.tsx -------------------------------------------------------------------------------- /components/reports/overdue-report.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/reports/overdue-report.tsx -------------------------------------------------------------------------------- /components/reports/product-report.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/reports/product-report.tsx -------------------------------------------------------------------------------- /components/reports/revenue-report.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/reports/revenue-report.tsx -------------------------------------------------------------------------------- /components/side-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/side-nav.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/theme-toggle.tsx -------------------------------------------------------------------------------- /components/top-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/top-nav.tsx -------------------------------------------------------------------------------- /components/ui/StarRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/StarRating.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/chart.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/pagination.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/print-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/print-button.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/use-mobile.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/hooks/use-toast.ts -------------------------------------------------------------------------------- /lib/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/lib/actions.ts -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/lib/db.ts -------------------------------------------------------------------------------- /lib/indexed-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/lib/indexed-db.ts -------------------------------------------------------------------------------- /lib/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/lib/mail.ts -------------------------------------------------------------------------------- /lib/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/lib/permissions.ts -------------------------------------------------------------------------------- /lib/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/lib/security.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/prisma.config.mjs -------------------------------------------------------------------------------- /prisma/migrations/20251121165340_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/prisma/migrations/20251121165340_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20251127154545_add_verification_token/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/prisma/migrations/20251127154545_add_verification_token/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/prisma.config.ts.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/prisma/prisma.config.ts.bak -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/proxy.ts -------------------------------------------------------------------------------- /public/ledger.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/public/ledger.avif -------------------------------------------------------------------------------- /public/placeholder-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/public/placeholder-logo.png -------------------------------------------------------------------------------- /public/placeholder-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/public/placeholder-logo.svg -------------------------------------------------------------------------------- /public/placeholder-user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/public/placeholder-user.jpg -------------------------------------------------------------------------------- /public/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/public/placeholder.jpg -------------------------------------------------------------------------------- /public/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/public/placeholder.svg -------------------------------------------------------------------------------- /public/uploads/2e912cb8-2ecb-44ac-b23b-81d00c391358-untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/public/uploads/2e912cb8-2ecb-44ac-b23b-81d00c391358-untitled.png -------------------------------------------------------------------------------- /public/uploads/a70d24d9-8ce8-4e60-9c69-11501322c817-eye_logo_for_my_business_intelligence_ai.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/public/uploads/a70d24d9-8ce8-4e60-9c69-11501322c817-eye_logo_for_my_business_intelligence_ai.jpeg -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/types/next-auth.d.ts -------------------------------------------------------------------------------- /update-actions-script.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/update-actions-script.txt -------------------------------------------------------------------------------- /update-nextauth-v5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/update-nextauth-v5.ps1 -------------------------------------------------------------------------------- /utils/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/utils/constant.ts -------------------------------------------------------------------------------- /utils/getCurrencySymbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishalmaurya850/Product-Ledger/HEAD/utils/getCurrencySymbol.ts --------------------------------------------------------------------------------