├── .eslintrc.json ├── .gitignore ├── README.md ├── biome.json ├── components.json ├── drizzle.config.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── src ├── app │ ├── actions.ts │ ├── dashboard │ │ └── page.tsx │ ├── error.tsx │ ├── favicon.ico │ ├── fonts │ │ ├── GeistMonoVF.woff │ │ └── GeistVF.woff │ ├── globals.css │ ├── invoices │ │ ├── [invoiceId] │ │ │ ├── Invoice.tsx │ │ │ ├── page.tsx │ │ │ └── payment │ │ │ │ └── page.tsx │ │ └── new │ │ │ └── page.tsx │ ├── layout.tsx │ ├── page.tsx │ ├── sign-in │ │ └── [[...sign-in]] │ │ │ └── page.tsx │ └── sign-up │ │ └── [[...sign-up]] │ │ └── page.tsx ├── components │ ├── Container.tsx │ ├── Footer.tsx │ ├── Header.tsx │ ├── SubmitButton.tsx │ └── ui │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── table.tsx │ │ └── textarea.tsx ├── data │ └── invoices.ts ├── db │ ├── index.ts │ ├── migrations │ │ ├── 0000_early_shotgun.sql │ │ ├── 0001_puzzling_micromacro.sql │ │ ├── 0002_fair_avengers.sql │ │ ├── 0003_short_silk_fever.sql │ │ ├── 0004_modern_whiplash.sql │ │ ├── 0005_concerned_wind_dancer.sql │ │ ├── 0006_funny_richard_fisk.sql │ │ └── meta │ │ │ ├── 0000_snapshot.json │ │ │ ├── 0001_snapshot.json │ │ │ ├── 0002_snapshot.json │ │ │ ├── 0003_snapshot.json │ │ │ ├── 0004_snapshot.json │ │ │ ├── 0005_snapshot.json │ │ │ ├── 0006_snapshot.json │ │ │ └── _journal.json │ └── schema.ts ├── emails │ └── invoice-created.tsx ├── lib │ └── utils.ts └── middleware.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/biome.json -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/components.json -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /src/app/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/actions.ts -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/error.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /src/app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/invoices/[invoiceId]/Invoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/invoices/[invoiceId]/Invoice.tsx -------------------------------------------------------------------------------- /src/app/invoices/[invoiceId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/invoices/[invoiceId]/page.tsx -------------------------------------------------------------------------------- /src/app/invoices/[invoiceId]/payment/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/invoices/[invoiceId]/payment/page.tsx -------------------------------------------------------------------------------- /src/app/invoices/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/invoices/new/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/sign-in/[[...sign-in]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/sign-in/[[...sign-in]]/page.tsx -------------------------------------------------------------------------------- /src/app/sign-up/[[...sign-up]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/app/sign-up/[[...sign-up]]/page.tsx -------------------------------------------------------------------------------- /src/components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/Container.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/SubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/SubmitButton.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/data/invoices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/data/invoices.ts -------------------------------------------------------------------------------- /src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/index.ts -------------------------------------------------------------------------------- /src/db/migrations/0000_early_shotgun.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/0000_early_shotgun.sql -------------------------------------------------------------------------------- /src/db/migrations/0001_puzzling_micromacro.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "invoices" ADD COLUMN "userId" text NOT NULL; -------------------------------------------------------------------------------- /src/db/migrations/0002_fair_avengers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/0002_fair_avengers.sql -------------------------------------------------------------------------------- /src/db/migrations/0003_short_silk_fever.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/0003_short_silk_fever.sql -------------------------------------------------------------------------------- /src/db/migrations/0004_modern_whiplash.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/0004_modern_whiplash.sql -------------------------------------------------------------------------------- /src/db/migrations/0005_concerned_wind_dancer.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/0005_concerned_wind_dancer.sql -------------------------------------------------------------------------------- /src/db/migrations/0006_funny_richard_fisk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/0006_funny_richard_fisk.sql -------------------------------------------------------------------------------- /src/db/migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /src/db/migrations/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/meta/0001_snapshot.json -------------------------------------------------------------------------------- /src/db/migrations/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/meta/0002_snapshot.json -------------------------------------------------------------------------------- /src/db/migrations/meta/0003_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/meta/0003_snapshot.json -------------------------------------------------------------------------------- /src/db/migrations/meta/0004_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/meta/0004_snapshot.json -------------------------------------------------------------------------------- /src/db/migrations/meta/0005_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/meta/0005_snapshot.json -------------------------------------------------------------------------------- /src/db/migrations/meta/0006_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/meta/0006_snapshot.json -------------------------------------------------------------------------------- /src/db/migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/migrations/meta/_journal.json -------------------------------------------------------------------------------- /src/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/db/schema.ts -------------------------------------------------------------------------------- /src/emails/invoice-created.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/emails/invoice-created.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/colbyfayock/my-invoicing-app/HEAD/tsconfig.json --------------------------------------------------------------------------------