├── .eslintrc.json ├── .gitignore ├── README.md ├── components.json ├── next.config.js ├── package.json ├── postcss.config.js ├── prettier.config.js ├── prisma └── schema.prisma ├── public ├── next.svg └── vercel.svg ├── scripts ├── placeholder-data.js └── seed.js ├── src ├── app │ ├── admin │ │ ├── AdminNavbar.tsx │ │ ├── jobs │ │ │ └── [slug] │ │ │ │ ├── AdminSidebar.tsx │ │ │ │ ├── actions.ts │ │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ └── page.tsx │ ├── error.tsx │ ├── favicon.ico │ ├── globals.css │ ├── job-submitted │ │ └── page.tsx │ ├── jobs │ │ ├── [slug] │ │ │ └── page.tsx │ │ └── new │ │ │ ├── NewJobForm.tsx │ │ │ ├── actions.ts │ │ │ └── page.tsx │ ├── layout.tsx │ ├── not-found.tsx │ └── page.tsx ├── assets │ ├── company-logo-placeholder.png │ └── logo.png ├── components │ ├── Badge.tsx │ ├── Footer.tsx │ ├── FormSubmitButton.tsx │ ├── JobFilterSidebar.tsx │ ├── JobListItem.tsx │ ├── JobPage.tsx │ ├── JobResults.tsx │ ├── LoadingButton.tsx │ ├── LocationInput.tsx │ ├── Markdown.tsx │ ├── Navbar.tsx │ ├── RichTextEditor.tsx │ └── ui │ │ ├── button.tsx │ │ ├── form.tsx │ │ ├── h1.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ └── select.tsx ├── lib │ ├── cities-list.ts │ ├── job-types.ts │ ├── prisma.ts │ ├── utils.ts │ └── validation.ts └── middleware.ts ├── tailwind.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["next/core-web-vitals", "prettier"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/components.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/prettier.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /scripts/placeholder-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/scripts/placeholder-data.js -------------------------------------------------------------------------------- /scripts/seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/scripts/seed.js -------------------------------------------------------------------------------- /src/app/admin/AdminNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/admin/AdminNavbar.tsx -------------------------------------------------------------------------------- /src/app/admin/jobs/[slug]/AdminSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/admin/jobs/[slug]/AdminSidebar.tsx -------------------------------------------------------------------------------- /src/app/admin/jobs/[slug]/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/admin/jobs/[slug]/actions.ts -------------------------------------------------------------------------------- /src/app/admin/jobs/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/admin/jobs/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/admin/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/admin/layout.tsx -------------------------------------------------------------------------------- /src/app/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/admin/page.tsx -------------------------------------------------------------------------------- /src/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/error.tsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/job-submitted/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/job-submitted/page.tsx -------------------------------------------------------------------------------- /src/app/jobs/[slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/jobs/[slug]/page.tsx -------------------------------------------------------------------------------- /src/app/jobs/new/NewJobForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/jobs/new/NewJobForm.tsx -------------------------------------------------------------------------------- /src/app/jobs/new/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/jobs/new/actions.ts -------------------------------------------------------------------------------- /src/app/jobs/new/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/jobs/new/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/assets/company-logo-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/assets/company-logo-placeholder.png -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/Badge.tsx -------------------------------------------------------------------------------- /src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/Footer.tsx -------------------------------------------------------------------------------- /src/components/FormSubmitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/FormSubmitButton.tsx -------------------------------------------------------------------------------- /src/components/JobFilterSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/JobFilterSidebar.tsx -------------------------------------------------------------------------------- /src/components/JobListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/JobListItem.tsx -------------------------------------------------------------------------------- /src/components/JobPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/JobPage.tsx -------------------------------------------------------------------------------- /src/components/JobResults.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/JobResults.tsx -------------------------------------------------------------------------------- /src/components/LoadingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/LoadingButton.tsx -------------------------------------------------------------------------------- /src/components/LocationInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/LocationInput.tsx -------------------------------------------------------------------------------- /src/components/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/Markdown.tsx -------------------------------------------------------------------------------- /src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/Navbar.tsx -------------------------------------------------------------------------------- /src/components/RichTextEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/RichTextEditor.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/h1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/ui/h1.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/lib/cities-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/lib/cities-list.ts -------------------------------------------------------------------------------- /src/lib/job-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/lib/job-types.ts -------------------------------------------------------------------------------- /src/lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/lib/prisma.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/lib/validation.ts -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codinginflow/nextjs-job-board/HEAD/tsconfig.json --------------------------------------------------------------------------------