├── .eslintrc.json ├── .gitignore ├── README.md ├── SAMPLE.env.local ├── app ├── (components) │ ├── DeleteBlock.jsx │ ├── EditTicketForm.jsx │ ├── Nav.jsx │ ├── PriorityDisplay.jsx │ ├── ProgressDisplay.jsx │ ├── StatusDisplay.jsx │ └── TicketCard.jsx ├── TicketPage │ └── [id] │ │ └── page.jsx ├── api │ └── Tickets │ │ ├── [id] │ │ └── route.js │ │ └── route.js ├── favicon.ico ├── globals.css ├── layout.jsx ├── models │ └── Ticket.js └── page.jsx ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg └── tailwind.config.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/README.md -------------------------------------------------------------------------------- /SAMPLE.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/SAMPLE.env.local -------------------------------------------------------------------------------- /app/(components)/DeleteBlock.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/(components)/DeleteBlock.jsx -------------------------------------------------------------------------------- /app/(components)/EditTicketForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/(components)/EditTicketForm.jsx -------------------------------------------------------------------------------- /app/(components)/Nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/(components)/Nav.jsx -------------------------------------------------------------------------------- /app/(components)/PriorityDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/(components)/PriorityDisplay.jsx -------------------------------------------------------------------------------- /app/(components)/ProgressDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/(components)/ProgressDisplay.jsx -------------------------------------------------------------------------------- /app/(components)/StatusDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/(components)/StatusDisplay.jsx -------------------------------------------------------------------------------- /app/(components)/TicketCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/(components)/TicketCard.jsx -------------------------------------------------------------------------------- /app/TicketPage/[id]/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/TicketPage/[id]/page.jsx -------------------------------------------------------------------------------- /app/api/Tickets/[id]/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/api/Tickets/[id]/route.js -------------------------------------------------------------------------------- /app/api/Tickets/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/api/Tickets/route.js -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/layout.jsx -------------------------------------------------------------------------------- /app/models/Ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/models/Ticket.js -------------------------------------------------------------------------------- /app/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/app/page.jsx -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ClarityCoders/Ticket-Tutorial-App/HEAD/tailwind.config.js --------------------------------------------------------------------------------