├── .cursorrules ├── .env.example ├── .eslintrc.json ├── .github └── funding.yaml ├── .gitignore ├── README.md ├── actions ├── notes-actions.ts ├── profiles-actions.ts └── stripe-actions.ts ├── app ├── (auth) │ ├── layout.tsx │ ├── login │ │ └── [[...login]] │ │ │ └── page.tsx │ └── signup │ │ └── [[...signup]] │ │ └── page.tsx ├── (marketing) │ ├── page.tsx │ └── pricing │ │ └── page.tsx ├── api │ └── stripe │ │ └── webhooks │ │ └── route.ts ├── globals.css ├── layout.tsx └── notes │ └── page.tsx ├── components.json ├── components ├── header.tsx ├── notes │ └── notes.tsx ├── ui │ ├── 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 │ ├── progress.tsx │ ├── radio-group.tsx │ ├── resizable.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.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-toast.ts └── utilities │ └── providers.tsx ├── db ├── db.ts ├── migrations │ ├── 0000_sloppy_nightshade.sql │ ├── 0001_noisy_living_mummy.sql │ └── meta │ │ ├── 0000_snapshot.json │ │ ├── 0001_snapshot.json │ │ └── _journal.json ├── queries │ ├── notes-queries.ts │ └── profiles-queries.ts └── schema │ ├── index.ts │ ├── notes-schema.ts │ └── profiles-schema.ts ├── drizzle.config.ts ├── lib ├── stripe.ts └── utils.ts ├── license ├── middleware.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prompts ├── instructions │ ├── backend-instructions.md │ └── frontend-instructions.md ├── project-setup │ ├── setup-auth.md │ ├── setup-backend.md │ ├── setup-frontend.md │ ├── setup-payments.md │ └── setup-project.md └── utilities │ ├── perplexity.md │ └── v0.md ├── tailwind.config.ts ├── tsconfig.json └── types ├── actions └── actions-types.ts └── index.ts /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/.cursorrules -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/funding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/.github/funding.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/README.md -------------------------------------------------------------------------------- /actions/notes-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/actions/notes-actions.ts -------------------------------------------------------------------------------- /actions/profiles-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/actions/profiles-actions.ts -------------------------------------------------------------------------------- /actions/stripe-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/actions/stripe-actions.ts -------------------------------------------------------------------------------- /app/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/app/(auth)/layout.tsx -------------------------------------------------------------------------------- /app/(auth)/login/[[...login]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/app/(auth)/login/[[...login]]/page.tsx -------------------------------------------------------------------------------- /app/(auth)/signup/[[...signup]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/app/(auth)/signup/[[...signup]]/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/app/(marketing)/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/app/(marketing)/pricing/page.tsx -------------------------------------------------------------------------------- /app/api/stripe/webhooks/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/app/api/stripe/webhooks/route.ts -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/notes/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/app/notes/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components.json -------------------------------------------------------------------------------- /components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/header.tsx -------------------------------------------------------------------------------- /components/notes/notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/notes/notes.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/chart.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/pagination.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /components/utilities/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/components/utilities/providers.tsx -------------------------------------------------------------------------------- /db/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/db/db.ts -------------------------------------------------------------------------------- /db/migrations/0000_sloppy_nightshade.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/db/migrations/0000_sloppy_nightshade.sql -------------------------------------------------------------------------------- /db/migrations/0001_noisy_living_mummy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/db/migrations/0001_noisy_living_mummy.sql -------------------------------------------------------------------------------- /db/migrations/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/db/migrations/meta/0000_snapshot.json -------------------------------------------------------------------------------- /db/migrations/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/db/migrations/meta/0001_snapshot.json -------------------------------------------------------------------------------- /db/migrations/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/db/migrations/meta/_journal.json -------------------------------------------------------------------------------- /db/queries/notes-queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/db/queries/notes-queries.ts -------------------------------------------------------------------------------- /db/queries/profiles-queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/db/queries/profiles-queries.ts -------------------------------------------------------------------------------- /db/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/db/schema/index.ts -------------------------------------------------------------------------------- /db/schema/notes-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/db/schema/notes-schema.ts -------------------------------------------------------------------------------- /db/schema/profiles-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/db/schema/profiles-schema.ts -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/lib/stripe.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/license -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prompts/instructions/backend-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/prompts/instructions/backend-instructions.md -------------------------------------------------------------------------------- /prompts/instructions/frontend-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/prompts/instructions/frontend-instructions.md -------------------------------------------------------------------------------- /prompts/project-setup/setup-auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/prompts/project-setup/setup-auth.md -------------------------------------------------------------------------------- /prompts/project-setup/setup-backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/prompts/project-setup/setup-backend.md -------------------------------------------------------------------------------- /prompts/project-setup/setup-frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/prompts/project-setup/setup-frontend.md -------------------------------------------------------------------------------- /prompts/project-setup/setup-payments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/prompts/project-setup/setup-payments.md -------------------------------------------------------------------------------- /prompts/project-setup/setup-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/prompts/project-setup/setup-project.md -------------------------------------------------------------------------------- /prompts/utilities/perplexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/prompts/utilities/perplexity.md -------------------------------------------------------------------------------- /prompts/utilities/v0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/prompts/utilities/v0.md -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/actions/actions-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/types/actions/actions-types.ts -------------------------------------------------------------------------------- /types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-notes-app-complete/HEAD/types/index.ts --------------------------------------------------------------------------------