├── .example.env ├── .gitignore ├── LICENSE ├── README.md ├── app ├── api │ ├── getCareers │ │ └── route.ts │ └── parsePdf │ │ └── route.ts ├── careers │ └── page.tsx ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components.json ├── components ├── CTA.tsx ├── CareerNode.tsx ├── Footer.tsx ├── GradientWrapper.tsx ├── Header.tsx ├── Hero.tsx ├── NavLink.tsx └── ui │ ├── button.tsx │ ├── dialog.tsx │ ├── input.tsx │ ├── label.tsx │ ├── loading-dots.module.css │ ├── loadingdots.tsx │ └── textarea.tsx ├── lib ├── types.ts └── utils.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── box.svg ├── careers-screenshot.png ├── fancy-screenshot.png ├── logo.png ├── logo.svg ├── next.svg ├── og-image.png └── vercel.svg ├── tailwind.config.ts └── tsconfig.json /.example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/.example.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/README.md -------------------------------------------------------------------------------- /app/api/getCareers/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/app/api/getCareers/route.ts -------------------------------------------------------------------------------- /app/api/parsePdf/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/app/api/parsePdf/route.ts -------------------------------------------------------------------------------- /app/careers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/app/careers/page.tsx -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/app/page.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components.json -------------------------------------------------------------------------------- /components/CTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/CTA.tsx -------------------------------------------------------------------------------- /components/CareerNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/CareerNode.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/GradientWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/GradientWrapper.tsx -------------------------------------------------------------------------------- /components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/Header.tsx -------------------------------------------------------------------------------- /components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/Hero.tsx -------------------------------------------------------------------------------- /components/NavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/NavLink.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/loading-dots.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/ui/loading-dots.module.css -------------------------------------------------------------------------------- /components/ui/loadingdots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/ui/loadingdots.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/lib/types.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/public/box.svg -------------------------------------------------------------------------------- /public/careers-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/public/careers-screenshot.png -------------------------------------------------------------------------------- /public/fancy-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/public/fancy-screenshot.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/public/og-image.png -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nutlope/explorecareers/HEAD/tsconfig.json --------------------------------------------------------------------------------