├── .cursorrules ├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── actions └── stream-message.ts ├── app ├── chat │ ├── beginner │ │ ├── README.md │ │ └── page.tsx │ └── page.tsx ├── components │ ├── booking-card.tsx │ ├── date-picker.tsx │ ├── featured-listings.tsx │ ├── footer.tsx │ ├── header.tsx │ ├── hero.tsx │ ├── image-carousel.tsx │ ├── property-details.tsx │ └── side-header.tsx ├── cursor │ ├── advanced │ │ ├── composer-projects │ │ │ └── page.tsx │ │ ├── markdown-todos │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── perplexity │ │ │ └── page.tsx │ │ ├── prompt-files │ │ │ ├── actions.ts │ │ │ └── page.tsx │ │ ├── status │ │ │ └── page.tsx │ │ ├── v0 │ │ │ └── page.tsx │ │ └── voice │ │ │ └── page.tsx │ ├── chat │ │ └── page.tsx │ ├── command │ │ └── page.tsx │ ├── composer │ │ └── page.tsx │ └── tab │ │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components.json ├── components ├── api-key-display.tsx ├── company-form.tsx ├── providers.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 └── user-onboarding.tsx ├── lib └── utils.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── prompts ├── new-component.md ├── openai-with-vercel-sdk.md ├── perplexity.md ├── rules │ ├── code-tutor.md │ └── mckay.md └── v0.md ├── status-reports └── company-logo-feature.md ├── status └── create-status-report.md ├── tailwind.config.ts ├── todos └── note-taking-app-starter.md └── tsconfig.json /.cursorrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/.cursorrules -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/README.md -------------------------------------------------------------------------------- /actions/stream-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/actions/stream-message.ts -------------------------------------------------------------------------------- /app/chat/beginner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/chat/beginner/README.md -------------------------------------------------------------------------------- /app/chat/beginner/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/chat/beginner/page.tsx -------------------------------------------------------------------------------- /app/chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/chat/page.tsx -------------------------------------------------------------------------------- /app/components/booking-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/components/booking-card.tsx -------------------------------------------------------------------------------- /app/components/date-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/components/date-picker.tsx -------------------------------------------------------------------------------- /app/components/featured-listings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/components/featured-listings.tsx -------------------------------------------------------------------------------- /app/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/components/footer.tsx -------------------------------------------------------------------------------- /app/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/components/header.tsx -------------------------------------------------------------------------------- /app/components/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/components/hero.tsx -------------------------------------------------------------------------------- /app/components/image-carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/components/image-carousel.tsx -------------------------------------------------------------------------------- /app/components/property-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/components/property-details.tsx -------------------------------------------------------------------------------- /app/components/side-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/components/side-header.tsx -------------------------------------------------------------------------------- /app/cursor/advanced/composer-projects/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/advanced/composer-projects/page.tsx -------------------------------------------------------------------------------- /app/cursor/advanced/markdown-todos/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/advanced/markdown-todos/page.tsx -------------------------------------------------------------------------------- /app/cursor/advanced/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/advanced/page.tsx -------------------------------------------------------------------------------- /app/cursor/advanced/perplexity/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/advanced/perplexity/page.tsx -------------------------------------------------------------------------------- /app/cursor/advanced/prompt-files/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/advanced/prompt-files/actions.ts -------------------------------------------------------------------------------- /app/cursor/advanced/prompt-files/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/advanced/prompt-files/page.tsx -------------------------------------------------------------------------------- /app/cursor/advanced/status/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/advanced/status/page.tsx -------------------------------------------------------------------------------- /app/cursor/advanced/v0/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/advanced/v0/page.tsx -------------------------------------------------------------------------------- /app/cursor/advanced/voice/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/advanced/voice/page.tsx -------------------------------------------------------------------------------- /app/cursor/chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/chat/page.tsx -------------------------------------------------------------------------------- /app/cursor/command/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/command/page.tsx -------------------------------------------------------------------------------- /app/cursor/composer/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/composer/page.tsx -------------------------------------------------------------------------------- /app/cursor/tab/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/cursor/tab/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components.json -------------------------------------------------------------------------------- /components/api-key-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/api-key-display.tsx -------------------------------------------------------------------------------- /components/company-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/company-form.tsx -------------------------------------------------------------------------------- /components/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/providers.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/carousel.tsx -------------------------------------------------------------------------------- /components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/chart.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/drawer.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input-otp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/input-otp.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/pagination.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/sonner.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /components/user-onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/components/user-onboarding.tsx -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prompts/new-component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/prompts/new-component.md -------------------------------------------------------------------------------- /prompts/openai-with-vercel-sdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/prompts/openai-with-vercel-sdk.md -------------------------------------------------------------------------------- /prompts/perplexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/prompts/perplexity.md -------------------------------------------------------------------------------- /prompts/rules/code-tutor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/prompts/rules/code-tutor.md -------------------------------------------------------------------------------- /prompts/rules/mckay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/prompts/rules/mckay.md -------------------------------------------------------------------------------- /prompts/v0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/prompts/v0.md -------------------------------------------------------------------------------- /status-reports/company-logo-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/status-reports/company-logo-feature.md -------------------------------------------------------------------------------- /status/create-status-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/status/create-status-report.md -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /todos/note-taking-app-starter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/todos/note-taking-app-starter.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mckaywrigley/takeoff-cursor-course/HEAD/tsconfig.json --------------------------------------------------------------------------------