@barkajs/barka 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +64 -0
- package/INVARIANTS.json +43 -0
- package/LICENSE +19 -0
- package/README.md +566 -0
- package/dist/app.d.ts +22 -0
- package/dist/app.d.ts.map +1 -0
- package/dist/app.js +464 -0
- package/dist/app.js.map +1 -0
- package/dist/built-in-theme/components/cta/cta.d.ts +5 -0
- package/dist/built-in-theme/components/cta/cta.d.ts.map +1 -0
- package/dist/built-in-theme/components/cta/cta.js +6 -0
- package/dist/built-in-theme/components/cta/cta.js.map +1 -0
- package/dist/built-in-theme/components/features/features.d.ts +5 -0
- package/dist/built-in-theme/components/features/features.d.ts.map +1 -0
- package/dist/built-in-theme/components/features/features.js +7 -0
- package/dist/built-in-theme/components/features/features.js.map +1 -0
- package/dist/built-in-theme/components/hero/hero.d.ts +5 -0
- package/dist/built-in-theme/components/hero/hero.d.ts.map +1 -0
- package/dist/built-in-theme/components/hero/hero.js +6 -0
- package/dist/built-in-theme/components/hero/hero.js.map +1 -0
- package/dist/built-in-theme/components/text/text.d.ts +4 -0
- package/dist/built-in-theme/components/text/text.d.ts.map +1 -0
- package/dist/built-in-theme/components/text/text.js +7 -0
- package/dist/built-in-theme/components/text/text.js.map +1 -0
- package/dist/built-in-theme/layouts/article.d.ts +4 -0
- package/dist/built-in-theme/layouts/article.d.ts.map +1 -0
- package/dist/built-in-theme/layouts/article.js +11 -0
- package/dist/built-in-theme/layouts/article.js.map +1 -0
- package/dist/built-in-theme/layouts/base.d.ts +7 -0
- package/dist/built-in-theme/layouts/base.d.ts.map +1 -0
- package/dist/built-in-theme/layouts/base.js +21 -0
- package/dist/built-in-theme/layouts/base.js.map +1 -0
- package/dist/built-in-theme/layouts/landing-page.d.ts +6 -0
- package/dist/built-in-theme/layouts/landing-page.d.ts.map +1 -0
- package/dist/built-in-theme/layouts/landing-page.js +6 -0
- package/dist/built-in-theme/layouts/landing-page.js.map +1 -0
- package/dist/built-in-theme/layouts/page.d.ts +4 -0
- package/dist/built-in-theme/layouts/page.d.ts.map +1 -0
- package/dist/built-in-theme/layouts/page.js +7 -0
- package/dist/built-in-theme/layouts/page.js.map +1 -0
- package/dist/cli/build.d.ts +11 -0
- package/dist/cli/build.d.ts.map +1 -0
- package/dist/cli/build.js +271 -0
- package/dist/cli/build.js.map +1 -0
- package/dist/cli/create-app.d.ts +4 -0
- package/dist/cli/create-app.d.ts.map +1 -0
- package/dist/cli/create-app.js +179 -0
- package/dist/cli/create-app.js.map +1 -0
- package/dist/cli/db-init.d.ts +6 -0
- package/dist/cli/db-init.d.ts.map +1 -0
- package/dist/cli/db-init.js +28 -0
- package/dist/cli/db-init.js.map +1 -0
- package/dist/cli/dev.d.ts +10 -0
- package/dist/cli/dev.d.ts.map +1 -0
- package/dist/cli/dev.js +68 -0
- package/dist/cli/dev.js.map +1 -0
- package/dist/cli/export-cmd.d.ts +6 -0
- package/dist/cli/export-cmd.d.ts.map +1 -0
- package/dist/cli/export-cmd.js +12 -0
- package/dist/cli/export-cmd.js.map +1 -0
- package/dist/cli/import-cmd.d.ts +6 -0
- package/dist/cli/import-cmd.d.ts.map +1 -0
- package/dist/cli/import-cmd.js +11 -0
- package/dist/cli/import-cmd.js.map +1 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +163 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/init-cmd.d.ts +20 -0
- package/dist/cli/init-cmd.d.ts.map +1 -0
- package/dist/cli/init-cmd.js +116 -0
- package/dist/cli/init-cmd.js.map +1 -0
- package/dist/cli/sync-cmd.d.ts +5 -0
- package/dist/cli/sync-cmd.d.ts.map +1 -0
- package/dist/cli/sync-cmd.js +17 -0
- package/dist/cli/sync-cmd.js.map +1 -0
- package/dist/content-engine.d.ts +50 -0
- package/dist/content-engine.d.ts.map +1 -0
- package/dist/content-engine.js +240 -0
- package/dist/content-engine.js.map +1 -0
- package/dist/db/connection.d.ts +9 -0
- package/dist/db/connection.d.ts.map +1 -0
- package/dist/db/connection.js +121 -0
- package/dist/db/connection.js.map +1 -0
- package/dist/db/schema.d.ts +1178 -0
- package/dist/db/schema.d.ts.map +1 -0
- package/dist/db/schema.js +79 -0
- package/dist/db/schema.js.map +1 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -0
- package/dist/lib/auth.d.ts +14 -0
- package/dist/lib/auth.d.ts.map +1 -0
- package/dist/lib/auth.js +40 -0
- package/dist/lib/auth.js.map +1 -0
- package/dist/lib/config-files.d.ts +8 -0
- package/dist/lib/config-files.d.ts.map +1 -0
- package/dist/lib/config-files.js +72 -0
- package/dist/lib/config-files.js.map +1 -0
- package/dist/lib/content-files.d.ts +5 -0
- package/dist/lib/content-files.d.ts.map +1 -0
- package/dist/lib/content-files.js +156 -0
- package/dist/lib/content-files.js.map +1 -0
- package/dist/lib/i18n.d.ts +33 -0
- package/dist/lib/i18n.d.ts.map +1 -0
- package/dist/lib/i18n.js +247 -0
- package/dist/lib/i18n.js.map +1 -0
- package/dist/lib/multisite.d.ts +23 -0
- package/dist/lib/multisite.d.ts.map +1 -0
- package/dist/lib/multisite.js +73 -0
- package/dist/lib/multisite.js.map +1 -0
- package/dist/lib/paths.d.ts +6 -0
- package/dist/lib/paths.d.ts.map +1 -0
- package/dist/lib/paths.js +25 -0
- package/dist/lib/paths.js.map +1 -0
- package/dist/lib/schema-loader.d.ts +25 -0
- package/dist/lib/schema-loader.d.ts.map +1 -0
- package/dist/lib/schema-loader.js +45 -0
- package/dist/lib/schema-loader.js.map +1 -0
- package/dist/lib/seo.d.ts +18 -0
- package/dist/lib/seo.d.ts.map +1 -0
- package/dist/lib/seo.js +212 -0
- package/dist/lib/seo.js.map +1 -0
- package/dist/lib/sync.d.ts +33 -0
- package/dist/lib/sync.d.ts.map +1 -0
- package/dist/lib/sync.js +308 -0
- package/dist/lib/sync.js.map +1 -0
- package/dist/lib/taxonomy.d.ts +29 -0
- package/dist/lib/taxonomy.d.ts.map +1 -0
- package/dist/lib/taxonomy.js +170 -0
- package/dist/lib/taxonomy.js.map +1 -0
- package/dist/lib/template-renderer.d.ts +6 -0
- package/dist/lib/template-renderer.d.ts.map +1 -0
- package/dist/lib/template-renderer.js +80 -0
- package/dist/lib/template-renderer.js.map +1 -0
- package/dist/lib/theme-loader.d.ts +5 -0
- package/dist/lib/theme-loader.d.ts.map +1 -0
- package/dist/lib/theme-loader.js +199 -0
- package/dist/lib/theme-loader.js.map +1 -0
- package/dist/lib/theme-types.d.ts +39 -0
- package/dist/lib/theme-types.d.ts.map +1 -0
- package/dist/lib/theme-types.js +2 -0
- package/dist/lib/theme-types.js.map +1 -0
- package/dist/lib/types.d.ts +91 -0
- package/dist/lib/types.d.ts.map +1 -0
- package/dist/lib/types.js +2 -0
- package/dist/lib/types.js.map +1 -0
- package/dist/routes/admin/content-edit.d.ts +10 -0
- package/dist/routes/admin/content-edit.d.ts.map +1 -0
- package/dist/routes/admin/content-edit.js +325 -0
- package/dist/routes/admin/content-edit.js.map +1 -0
- package/dist/routes/admin/content-list.d.ts +10 -0
- package/dist/routes/admin/content-list.d.ts.map +1 -0
- package/dist/routes/admin/content-list.js +162 -0
- package/dist/routes/admin/content-list.js.map +1 -0
- package/dist/routes/admin/content.d.ts +3 -0
- package/dist/routes/admin/content.d.ts.map +1 -0
- package/dist/routes/admin/content.js +12 -0
- package/dist/routes/admin/content.js.map +1 -0
- package/dist/routes/admin/dashboard.d.ts +4 -0
- package/dist/routes/admin/dashboard.d.ts.map +1 -0
- package/dist/routes/admin/dashboard.js +121 -0
- package/dist/routes/admin/dashboard.js.map +1 -0
- package/dist/routes/admin/export-route.d.ts +10 -0
- package/dist/routes/admin/export-route.d.ts.map +1 -0
- package/dist/routes/admin/export-route.js +19 -0
- package/dist/routes/admin/export-route.js.map +1 -0
- package/dist/routes/admin/index.d.ts +9 -0
- package/dist/routes/admin/index.d.ts.map +1 -0
- package/dist/routes/admin/index.js +27 -0
- package/dist/routes/admin/index.js.map +1 -0
- package/dist/routes/admin/layout.d.ts +17 -0
- package/dist/routes/admin/layout.d.ts.map +1 -0
- package/dist/routes/admin/layout.js +110 -0
- package/dist/routes/admin/layout.js.map +1 -0
- package/dist/routes/admin/login.d.ts +5 -0
- package/dist/routes/admin/login.d.ts.map +1 -0
- package/dist/routes/admin/login.js +113 -0
- package/dist/routes/admin/login.js.map +1 -0
- package/dist/routes/admin/media.d.ts +10 -0
- package/dist/routes/admin/media.d.ts.map +1 -0
- package/dist/routes/admin/media.js +192 -0
- package/dist/routes/admin/media.js.map +1 -0
- package/dist/routes/admin/middleware.d.ts +8 -0
- package/dist/routes/admin/middleware.d.ts.map +1 -0
- package/dist/routes/admin/middleware.js +29 -0
- package/dist/routes/admin/middleware.js.map +1 -0
- package/dist/routes/admin/section-builder.d.ts +10 -0
- package/dist/routes/admin/section-builder.d.ts.map +1 -0
- package/dist/routes/admin/section-builder.js +487 -0
- package/dist/routes/admin/section-builder.js.map +1 -0
- package/dist/routes/admin/settings.d.ts +10 -0
- package/dist/routes/admin/settings.d.ts.map +1 -0
- package/dist/routes/admin/settings.js +209 -0
- package/dist/routes/admin/settings.js.map +1 -0
- package/dist/routes/admin/site-switcher.d.ts +3 -0
- package/dist/routes/admin/site-switcher.d.ts.map +1 -0
- package/dist/routes/admin/site-switcher.js +36 -0
- package/dist/routes/admin/site-switcher.js.map +1 -0
- package/dist/routes/admin/taxonomy.d.ts +10 -0
- package/dist/routes/admin/taxonomy.d.ts.map +1 -0
- package/dist/routes/admin/taxonomy.js +297 -0
- package/dist/routes/admin/taxonomy.js.map +1 -0
- package/dist/routes/admin/users.d.ts +10 -0
- package/dist/routes/admin/users.d.ts.map +1 -0
- package/dist/routes/admin/users.js +227 -0
- package/dist/routes/admin/users.js.map +1 -0
- package/package.json +75 -0
- package/src/built-in-theme/components/cta/cta.tsx +18 -0
- package/src/built-in-theme/components/cta/schema.yaml +17 -0
- package/src/built-in-theme/components/features/features.tsx +18 -0
- package/src/built-in-theme/components/features/schema.yaml +22 -0
- package/src/built-in-theme/components/hero/hero.tsx +18 -0
- package/src/built-in-theme/components/hero/schema.yaml +17 -0
- package/src/built-in-theme/components/text/schema.yaml +12 -0
- package/src/built-in-theme/components/text/text.tsx +11 -0
- package/src/built-in-theme/layouts/article.tsx +20 -0
- package/src/built-in-theme/layouts/base.tsx +50 -0
- package/src/built-in-theme/layouts/landing-page.tsx +15 -0
- package/src/built-in-theme/layouts/page.tsx +11 -0
- package/src/built-in-theme/theme.yaml +4 -0
- package/starters/blank/config/content-types.yaml +47 -0
- package/starters/blank/config/section-types.yaml +115 -0
- package/starters/blank/config/settings.yaml +12 -0
- package/starters/blank/content/landing-pages/homepage.yaml +55 -0
- package/starters/blank/content/pages/about.md +27 -0
- package/starters/blank/starter.yaml +14 -0
- package/starters/blank/themes/starter/_types.ts +93 -0
- package/starters/blank/themes/starter/components/blog-listing/blog-listing.tsx +102 -0
- package/starters/blank/themes/starter/components/blog-listing/schema.yaml +21 -0
- package/starters/blank/themes/starter/components/columns/columns.tsx +101 -0
- package/starters/blank/themes/starter/components/columns/schema.yaml +23 -0
- package/starters/blank/themes/starter/components/counters/counters.css +13 -0
- package/starters/blank/themes/starter/components/counters/counters.tsx +81 -0
- package/starters/blank/themes/starter/components/counters/schema.yaml +23 -0
- package/starters/blank/themes/starter/components/cta/cta.tsx +57 -0
- package/starters/blank/themes/starter/components/cta/schema.yaml +30 -0
- package/starters/blank/themes/starter/components/faq/faq.tsx +77 -0
- package/starters/blank/themes/starter/components/faq/schema.yaml +20 -0
- package/starters/blank/themes/starter/components/features/features.tsx +82 -0
- package/starters/blank/themes/starter/components/features/schema.yaml +19 -0
- package/starters/blank/themes/starter/components/form/form.tsx +126 -0
- package/starters/blank/themes/starter/components/form/schema.yaml +18 -0
- package/starters/blank/themes/starter/components/gallery/gallery.tsx +85 -0
- package/starters/blank/themes/starter/components/gallery/schema.yaml +27 -0
- package/starters/blank/themes/starter/components/hero/hero.tsx +77 -0
- package/starters/blank/themes/starter/components/hero/schema.yaml +26 -0
- package/starters/blank/themes/starter/components/logo-slider/logo-slider.css +21 -0
- package/starters/blank/themes/starter/components/logo-slider/logo-slider.tsx +81 -0
- package/starters/blank/themes/starter/components/logo-slider/schema.yaml +23 -0
- package/starters/blank/themes/starter/components/pricing/pricing.tsx +141 -0
- package/starters/blank/themes/starter/components/pricing/schema.yaml +44 -0
- package/starters/blank/themes/starter/components/testimonials/schema.yaml +26 -0
- package/starters/blank/themes/starter/components/testimonials/testimonials.tsx +100 -0
- package/starters/blank/themes/starter/components/text/schema.yaml +12 -0
- package/starters/blank/themes/starter/components/text/text.tsx +62 -0
- package/starters/blank/themes/starter/components/text-with-image/schema.yaml +30 -0
- package/starters/blank/themes/starter/components/text-with-image/text-with-image.tsx +86 -0
- package/starters/blank/themes/starter/components/video/schema.yaml +19 -0
- package/starters/blank/themes/starter/components/video/video.tsx +98 -0
- package/starters/blank/themes/starter/layouts/article.tsx +42 -0
- package/starters/blank/themes/starter/layouts/base.tsx +92 -0
- package/starters/blank/themes/starter/layouts/landing-page.tsx +14 -0
- package/starters/blank/themes/starter/layouts/page.tsx +29 -0
- package/starters/blank/themes/starter/partials/footer.tsx +22 -0
- package/starters/blank/themes/starter/partials/header.tsx +32 -0
- package/starters/blank/themes/starter/static/style.css +125 -0
- package/starters/blank/themes/starter/theme.yaml +16 -0
- package/starters/kadoservices/config/content-types.yaml +239 -0
- package/starters/kadoservices/config/languages.yaml +12 -0
- package/starters/kadoservices/config/section-types.yaml +379 -0
- package/starters/kadoservices/config/settings.yaml +15 -0
- package/starters/kadoservices/config/sites.yaml +14 -0
- package/starters/kadoservices/config/taxonomies.yaml +61 -0
- package/starters/kadoservices/config/translations/de.yaml +120 -0
- package/starters/kadoservices/config/translations/en.yaml +120 -0
- package/starters/kadoservices/config/translations/pl.yaml +120 -0
- package/starters/kadoservices/content/articles/employer-branding-strategies.md +61 -0
- package/starters/kadoservices/content/articles/hiring-trends-2026.md +61 -0
- package/starters/kadoservices/content/articles/hiring-trends-2026.pl.md +61 -0
- package/starters/kadoservices/content/articles/labor-law-changes.md +78 -0
- package/starters/kadoservices/content/articles/temporary-staffing-guide.md +76 -0
- package/starters/kadoservices/content/articles/temporary-staffing-guide.pl.md +76 -0
- package/starters/kadoservices/content/case-studies/finance-rpo-program.md +68 -0
- package/starters/kadoservices/content/case-studies/manufacturing-mass-recruitment.md +65 -0
- package/starters/kadoservices/content/case-studies/manufacturing-mass-recruitment.pl.md +65 -0
- package/starters/kadoservices/content/case-studies/retail-seasonal-staffing.md +69 -0
- package/starters/kadoservices/content/industries/finance-shared-services.md +59 -0
- package/starters/kadoservices/content/industries/healthcare.md +64 -0
- package/starters/kadoservices/content/industries/it-technology.md +61 -0
- package/starters/kadoservices/content/industries/logistics.md +54 -0
- package/starters/kadoservices/content/industries/manufacturing.md +61 -0
- package/starters/kadoservices/content/industries/retail.md +56 -0
- package/starters/kadoservices/content/landing-pages/homepage.pl.yaml +198 -0
- package/starters/kadoservices/content/landing-pages/homepage.yaml +198 -0
- package/starters/kadoservices/content/locations/gdansk.md +32 -0
- package/starters/kadoservices/content/locations/krakow.md +30 -0
- package/starters/kadoservices/content/locations/warsaw.md +30 -0
- package/starters/kadoservices/content/locations/wroclaw.md +32 -0
- package/starters/kadoservices/content/pages/about.md +58 -0
- package/starters/kadoservices/content/pages/about.pl.md +58 -0
- package/starters/kadoservices/content/pages/careers.md +55 -0
- package/starters/kadoservices/content/pages/clients.md +65 -0
- package/starters/kadoservices/content/pages/contact.md +74 -0
- package/starters/kadoservices/content/pages/contact.pl.md +74 -0
- package/starters/kadoservices/content/pages/faq.md +76 -0
- package/starters/kadoservices/content/services/employer-branding.md +70 -0
- package/starters/kadoservices/content/services/hr-consulting.md +64 -0
- package/starters/kadoservices/content/services/outsourcing-rpo.md +78 -0
- package/starters/kadoservices/content/services/outsourcing-rpo.pl.md +67 -0
- package/starters/kadoservices/content/services/payroll-hr-admin.md +66 -0
- package/starters/kadoservices/content/services/permanent-recruitment.md +78 -0
- package/starters/kadoservices/content/services/permanent-recruitment.pl.md +78 -0
- package/starters/kadoservices/content/services/temporary-staffing.md +78 -0
- package/starters/kadoservices/content/team/anna-kowalska.md +26 -0
- package/starters/kadoservices/content/team/jan-lewandowski.md +26 -0
- package/starters/kadoservices/content/team/katarzyna-zielinska.md +26 -0
- package/starters/kadoservices/content/team/maria-wisniewska.md +28 -0
- package/starters/kadoservices/content/team/tomasz-nowak.md +26 -0
- package/starters/kadoservices/starter.yaml +15 -0
- package/starters/kadoservices/themes/kadoservices/_types.ts +93 -0
- package/starters/kadoservices/themes/kadoservices/components/blog-listing/blog-listing.tsx +197 -0
- package/starters/kadoservices/themes/kadoservices/components/blog-listing/schema.yaml +21 -0
- package/starters/kadoservices/themes/kadoservices/components/columns/columns.tsx +104 -0
- package/starters/kadoservices/themes/kadoservices/components/columns/schema.yaml +23 -0
- package/starters/kadoservices/themes/kadoservices/components/counters/counters.css +13 -0
- package/starters/kadoservices/themes/kadoservices/components/counters/counters.tsx +103 -0
- package/starters/kadoservices/themes/kadoservices/components/counters/schema.yaml +23 -0
- package/starters/kadoservices/themes/kadoservices/components/cta/cta.tsx +100 -0
- package/starters/kadoservices/themes/kadoservices/components/cta/schema.yaml +30 -0
- package/starters/kadoservices/themes/kadoservices/components/faq/faq.tsx +77 -0
- package/starters/kadoservices/themes/kadoservices/components/faq/schema.yaml +20 -0
- package/starters/kadoservices/themes/kadoservices/components/features/features.tsx +151 -0
- package/starters/kadoservices/themes/kadoservices/components/features/schema.yaml +19 -0
- package/starters/kadoservices/themes/kadoservices/components/form/form.tsx +135 -0
- package/starters/kadoservices/themes/kadoservices/components/form/schema.yaml +18 -0
- package/starters/kadoservices/themes/kadoservices/components/gallery/gallery.tsx +90 -0
- package/starters/kadoservices/themes/kadoservices/components/gallery/schema.yaml +27 -0
- package/starters/kadoservices/themes/kadoservices/components/hero/hero.tsx +175 -0
- package/starters/kadoservices/themes/kadoservices/components/hero/schema.yaml +26 -0
- package/starters/kadoservices/themes/kadoservices/components/logo-slider/logo-slider.css +21 -0
- package/starters/kadoservices/themes/kadoservices/components/logo-slider/logo-slider.tsx +83 -0
- package/starters/kadoservices/themes/kadoservices/components/logo-slider/schema.yaml +23 -0
- package/starters/kadoservices/themes/kadoservices/components/pricing/pricing.tsx +161 -0
- package/starters/kadoservices/themes/kadoservices/components/pricing/schema.yaml +44 -0
- package/starters/kadoservices/themes/kadoservices/components/testimonials/schema.yaml +26 -0
- package/starters/kadoservices/themes/kadoservices/components/testimonials/testimonials.css +13 -0
- package/starters/kadoservices/themes/kadoservices/components/testimonials/testimonials.tsx +150 -0
- package/starters/kadoservices/themes/kadoservices/components/text/schema.yaml +12 -0
- package/starters/kadoservices/themes/kadoservices/components/text/text.tsx +67 -0
- package/starters/kadoservices/themes/kadoservices/components/text-with-image/schema.yaml +30 -0
- package/starters/kadoservices/themes/kadoservices/components/text-with-image/text-with-image.tsx +92 -0
- package/starters/kadoservices/themes/kadoservices/components/video/schema.yaml +19 -0
- package/starters/kadoservices/themes/kadoservices/components/video/video.tsx +103 -0
- package/starters/kadoservices/themes/kadoservices/layouts/404.tsx +96 -0
- package/starters/kadoservices/themes/kadoservices/layouts/article.tsx +140 -0
- package/starters/kadoservices/themes/kadoservices/layouts/base.tsx +669 -0
- package/starters/kadoservices/themes/kadoservices/layouts/case-study.tsx +240 -0
- package/starters/kadoservices/themes/kadoservices/layouts/index--articles.tsx +250 -0
- package/starters/kadoservices/themes/kadoservices/layouts/index--case-studies.tsx +232 -0
- package/starters/kadoservices/themes/kadoservices/layouts/index--services.tsx +237 -0
- package/starters/kadoservices/themes/kadoservices/layouts/index.tsx +96 -0
- package/starters/kadoservices/themes/kadoservices/layouts/industry.tsx +121 -0
- package/starters/kadoservices/themes/kadoservices/layouts/landing-page.tsx +14 -0
- package/starters/kadoservices/themes/kadoservices/layouts/page--about.tsx +158 -0
- package/starters/kadoservices/themes/kadoservices/layouts/page--careers.tsx +214 -0
- package/starters/kadoservices/themes/kadoservices/layouts/page--contact.tsx +218 -0
- package/starters/kadoservices/themes/kadoservices/layouts/page.tsx +45 -0
- package/starters/kadoservices/themes/kadoservices/layouts/service.tsx +235 -0
- package/starters/kadoservices/themes/kadoservices/partials/footer.tsx +109 -0
- package/starters/kadoservices/themes/kadoservices/partials/header.tsx +53 -0
- package/starters/kadoservices/themes/kadoservices/static/images/article-platform-engineering.jpg +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/barka-logo.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/case-study-banking-dashboard.jpg +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/case-study-banking.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/case-study-ecommerce-dashboard.jpg +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/case-study-healthcare-dashboard.jpg +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/case-study-healthcare.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/case-study-retail.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/handshake.jpg +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/hero-bg.jpg +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/hero-bg.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/lokatech-logo.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/office-warsaw.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/office.jpg +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/team-anna-kowalska.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/team-collaboration.jpg +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/team-jan-nowak.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/team-katarzyna-kaminska.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/team-maria-wisniewska.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/team-meeting.jpg +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/team-strategy-session.jpg +0 -0
- package/starters/kadoservices/themes/kadoservices/static/images/team-tomasz-lewandowski.png +0 -0
- package/starters/kadoservices/themes/kadoservices/static/style.css +542 -0
- package/starters/kadoservices/themes/kadoservices/theme.yaml +21 -0
- package/starters/kadoservices/themes/starter/_types.ts +93 -0
- package/starters/kadoservices/themes/starter/components/blog-listing/blog-listing.tsx +102 -0
- package/starters/kadoservices/themes/starter/components/blog-listing/schema.yaml +21 -0
- package/starters/kadoservices/themes/starter/components/columns/columns.tsx +101 -0
- package/starters/kadoservices/themes/starter/components/columns/schema.yaml +23 -0
- package/starters/kadoservices/themes/starter/components/counters/counters.css +13 -0
- package/starters/kadoservices/themes/starter/components/counters/counters.tsx +81 -0
- package/starters/kadoservices/themes/starter/components/counters/schema.yaml +23 -0
- package/starters/kadoservices/themes/starter/components/cta/cta.tsx +57 -0
- package/starters/kadoservices/themes/starter/components/cta/schema.yaml +30 -0
- package/starters/kadoservices/themes/starter/components/faq/faq.tsx +77 -0
- package/starters/kadoservices/themes/starter/components/faq/schema.yaml +20 -0
- package/starters/kadoservices/themes/starter/components/features/features.tsx +82 -0
- package/starters/kadoservices/themes/starter/components/features/schema.yaml +19 -0
- package/starters/kadoservices/themes/starter/components/form/form.tsx +126 -0
- package/starters/kadoservices/themes/starter/components/form/schema.yaml +18 -0
- package/starters/kadoservices/themes/starter/components/gallery/gallery.tsx +85 -0
- package/starters/kadoservices/themes/starter/components/gallery/schema.yaml +27 -0
- package/starters/kadoservices/themes/starter/components/hero/hero.tsx +77 -0
- package/starters/kadoservices/themes/starter/components/hero/schema.yaml +26 -0
- package/starters/kadoservices/themes/starter/components/logo-slider/logo-slider.css +21 -0
- package/starters/kadoservices/themes/starter/components/logo-slider/logo-slider.tsx +81 -0
- package/starters/kadoservices/themes/starter/components/logo-slider/schema.yaml +23 -0
- package/starters/kadoservices/themes/starter/components/pricing/pricing.tsx +141 -0
- package/starters/kadoservices/themes/starter/components/pricing/schema.yaml +44 -0
- package/starters/kadoservices/themes/starter/components/testimonials/schema.yaml +26 -0
- package/starters/kadoservices/themes/starter/components/testimonials/testimonials.tsx +100 -0
- package/starters/kadoservices/themes/starter/components/text/schema.yaml +12 -0
- package/starters/kadoservices/themes/starter/components/text/text.tsx +62 -0
- package/starters/kadoservices/themes/starter/components/text-with-image/schema.yaml +30 -0
- package/starters/kadoservices/themes/starter/components/text-with-image/text-with-image.tsx +86 -0
- package/starters/kadoservices/themes/starter/components/video/schema.yaml +19 -0
- package/starters/kadoservices/themes/starter/components/video/video.tsx +98 -0
- package/starters/kadoservices/themes/starter/layouts/article.tsx +42 -0
- package/starters/kadoservices/themes/starter/layouts/base.tsx +92 -0
- package/starters/kadoservices/themes/starter/layouts/landing-page.tsx +14 -0
- package/starters/kadoservices/themes/starter/layouts/page.tsx +29 -0
- package/starters/kadoservices/themes/starter/partials/footer.tsx +22 -0
- package/starters/kadoservices/themes/starter/partials/header.tsx +32 -0
- package/starters/kadoservices/themes/starter/static/style.css +125 -0
- package/starters/kadoservices/themes/starter/theme.yaml +16 -0
- package/starters/lokatech/config/content-types.yaml +226 -0
- package/starters/lokatech/config/languages.yaml +12 -0
- package/starters/lokatech/config/section-types.yaml +379 -0
- package/starters/lokatech/config/settings.yaml +15 -0
- package/starters/lokatech/config/sites.yaml +21 -0
- package/starters/lokatech/config/taxonomies.yaml +65 -0
- package/starters/lokatech/config/translations/de.yaml +108 -0
- package/starters/lokatech/config/translations/en.yaml +108 -0
- package/starters/lokatech/config/translations/pl.yaml +108 -0
- package/starters/lokatech/content/articles/ai-in-enterprise.md +51 -0
- package/starters/lokatech/content/articles/api-gateway-patterns-enterprise.md +35 -0
- package/starters/lokatech/content/articles/design-system-enterprise-scale.md +35 -0
- package/starters/lokatech/content/articles/domain-driven-design-bounded-contexts.md +35 -0
- package/starters/lokatech/content/articles/engineering-team-scaling-50-to-200.md +33 -0
- package/starters/lokatech/content/articles/event-driven-architecture-microservices.md +35 -0
- package/starters/lokatech/content/articles/future-of-cloud-native.md +47 -0
- package/starters/lokatech/content/articles/getting-started.md +83 -0
- package/starters/lokatech/content/articles/headless-cms-composable-architecture.md +35 -0
- package/starters/lokatech/content/articles/kubernetes-cost-optimization-finops.md +33 -0
- package/starters/lokatech/content/articles/legacy-modernization-strangler-fig.md +35 -0
- package/starters/lokatech/content/articles/llm-fine-tuning-enterprise-data.md +33 -0
- package/starters/lokatech/content/articles/observability-opentelemetry-stack.md +35 -0
- package/starters/lokatech/content/articles/platform-engineering-internal-developer-portals.md +33 -0
- package/starters/lokatech/content/articles/platform-engineering-internal-developer-portals.pl.md +33 -0
- package/starters/lokatech/content/articles/rag-retrieval-augmented-generation-production.md +35 -0
- package/starters/lokatech/content/articles/remote-engineering-culture-distributed-teams.md +35 -0
- package/starters/lokatech/content/articles/supply-chain-security-sbom.md +35 -0
- package/starters/lokatech/content/articles/welcome.md +42 -0
- package/starters/lokatech/content/articles/welcome.pl.md +39 -0
- package/starters/lokatech/content/articles/zero-trust-network-architecture.md +35 -0
- package/starters/lokatech/content/articles/zero-trust-security.md +55 -0
- package/starters/lokatech/content/case-studies/banking-platform-modernization.md +67 -0
- package/starters/lokatech/content/case-studies/ecommerce-platform-rewrite.md +64 -0
- package/starters/lokatech/content/case-studies/govtech-citizen-portal.md +59 -0
- package/starters/lokatech/content/case-studies/healthcare-data-pipeline.md +67 -0
- package/starters/lokatech/content/case-studies/healthcare-data-pipeline.pl.md +60 -0
- package/starters/lokatech/content/case-studies/insurance-claims-automation.md +58 -0
- package/starters/lokatech/content/case-studies/manufacturing-iot-digital-twin.md +58 -0
- package/starters/lokatech/content/case-studies/retail-cloud-migration.md +49 -0
- package/starters/lokatech/content/case-studies/telecom-5g-platform.md +57 -0
- package/starters/lokatech/content/industries/energy-utilities.md +35 -0
- package/starters/lokatech/content/industries/financial-services.md +35 -0
- package/starters/lokatech/content/industries/healthcare.md +35 -0
- package/starters/lokatech/content/industries/manufacturing.md +35 -0
- package/starters/lokatech/content/industries/retail-ecommerce.md +35 -0
- package/starters/lokatech/content/industries/telecom-media.md +35 -0
- package/starters/lokatech/content/landing-pages/homepage.pl.yaml +182 -0
- package/starters/lokatech/content/landing-pages/homepage.yaml +236 -0
- package/starters/lokatech/content/locations/berlin.md +22 -0
- package/starters/lokatech/content/locations/krakow.md +22 -0
- package/starters/lokatech/content/locations/london.md +22 -0
- package/starters/lokatech/content/locations/warsaw.md +22 -0
- package/starters/lokatech/content/locations/wroclaw.md +22 -0
- package/starters/lokatech/content/pages/about.md +55 -0
- package/starters/lokatech/content/pages/about.pl.md +36 -0
- package/starters/lokatech/content/pages/careers.md +50 -0
- package/starters/lokatech/content/pages/contact.md +51 -0
- package/starters/lokatech/content/pages/contact.pl.md +51 -0
- package/starters/lokatech/content/pages/security-compliance.md +66 -0
- package/starters/lokatech/content/services/cloud-infrastructure.md +73 -0
- package/starters/lokatech/content/services/custom-software-development.md +74 -0
- package/starters/lokatech/content/services/custom-software-development.pl.md +80 -0
- package/starters/lokatech/content/services/cybersecurity.md +72 -0
- package/starters/lokatech/content/services/data-ai.md +74 -0
- package/starters/lokatech/content/services/digital-transformation.md +70 -0
- package/starters/lokatech/content/services/it-outsourcing.md +72 -0
- package/starters/lokatech/content/team/anna-kowalska.md +21 -0
- package/starters/lokatech/content/team/jan-nowak.md +21 -0
- package/starters/lokatech/content/team/katarzyna-kaminska.md +20 -0
- package/starters/lokatech/content/team/maria-wisniewska.md +20 -0
- package/starters/lokatech/content/team/tomasz-lewandowski.md +20 -0
- package/starters/lokatech/starter.yaml +15 -0
- package/starters/lokatech/themes/lokatech/_types.ts +93 -0
- package/starters/lokatech/themes/lokatech/components/blog-listing/blog-listing.tsx +197 -0
- package/starters/lokatech/themes/lokatech/components/blog-listing/schema.yaml +21 -0
- package/starters/lokatech/themes/lokatech/components/columns/columns.tsx +104 -0
- package/starters/lokatech/themes/lokatech/components/columns/schema.yaml +23 -0
- package/starters/lokatech/themes/lokatech/components/counters/counters.css +13 -0
- package/starters/lokatech/themes/lokatech/components/counters/counters.tsx +103 -0
- package/starters/lokatech/themes/lokatech/components/counters/schema.yaml +23 -0
- package/starters/lokatech/themes/lokatech/components/cta/cta.tsx +100 -0
- package/starters/lokatech/themes/lokatech/components/cta/schema.yaml +30 -0
- package/starters/lokatech/themes/lokatech/components/faq/faq.tsx +77 -0
- package/starters/lokatech/themes/lokatech/components/faq/schema.yaml +20 -0
- package/starters/lokatech/themes/lokatech/components/features/features.tsx +149 -0
- package/starters/lokatech/themes/lokatech/components/features/schema.yaml +19 -0
- package/starters/lokatech/themes/lokatech/components/form/form.tsx +135 -0
- package/starters/lokatech/themes/lokatech/components/form/schema.yaml +18 -0
- package/starters/lokatech/themes/lokatech/components/gallery/gallery.tsx +90 -0
- package/starters/lokatech/themes/lokatech/components/gallery/schema.yaml +27 -0
- package/starters/lokatech/themes/lokatech/components/hero/hero.tsx +167 -0
- package/starters/lokatech/themes/lokatech/components/hero/schema.yaml +26 -0
- package/starters/lokatech/themes/lokatech/components/logo-slider/logo-slider.css +21 -0
- package/starters/lokatech/themes/lokatech/components/logo-slider/logo-slider.tsx +83 -0
- package/starters/lokatech/themes/lokatech/components/logo-slider/schema.yaml +23 -0
- package/starters/lokatech/themes/lokatech/components/pricing/pricing.tsx +161 -0
- package/starters/lokatech/themes/lokatech/components/pricing/schema.yaml +44 -0
- package/starters/lokatech/themes/lokatech/components/testimonials/schema.yaml +26 -0
- package/starters/lokatech/themes/lokatech/components/testimonials/testimonials.css +13 -0
- package/starters/lokatech/themes/lokatech/components/testimonials/testimonials.tsx +150 -0
- package/starters/lokatech/themes/lokatech/components/text/schema.yaml +12 -0
- package/starters/lokatech/themes/lokatech/components/text/text.tsx +67 -0
- package/starters/lokatech/themes/lokatech/components/text-with-image/schema.yaml +30 -0
- package/starters/lokatech/themes/lokatech/components/text-with-image/text-with-image.tsx +92 -0
- package/starters/lokatech/themes/lokatech/components/video/schema.yaml +19 -0
- package/starters/lokatech/themes/lokatech/components/video/video.tsx +103 -0
- package/starters/lokatech/themes/lokatech/layouts/404.tsx +96 -0
- package/starters/lokatech/themes/lokatech/layouts/article.tsx +140 -0
- package/starters/lokatech/themes/lokatech/layouts/base.tsx +672 -0
- package/starters/lokatech/themes/lokatech/layouts/case-study.tsx +233 -0
- package/starters/lokatech/themes/lokatech/layouts/index--articles.tsx +246 -0
- package/starters/lokatech/themes/lokatech/layouts/index--case-studies.tsx +230 -0
- package/starters/lokatech/themes/lokatech/layouts/index--services.tsx +237 -0
- package/starters/lokatech/themes/lokatech/layouts/index.tsx +96 -0
- package/starters/lokatech/themes/lokatech/layouts/industry.tsx +121 -0
- package/starters/lokatech/themes/lokatech/layouts/landing-page.tsx +14 -0
- package/starters/lokatech/themes/lokatech/layouts/page--about.tsx +158 -0
- package/starters/lokatech/themes/lokatech/layouts/page--careers.tsx +125 -0
- package/starters/lokatech/themes/lokatech/layouts/page--contact.tsx +235 -0
- package/starters/lokatech/themes/lokatech/layouts/page.tsx +45 -0
- package/starters/lokatech/themes/lokatech/layouts/service.tsx +235 -0
- package/starters/lokatech/themes/lokatech/partials/footer.tsx +109 -0
- package/starters/lokatech/themes/lokatech/partials/header.tsx +53 -0
- package/starters/lokatech/themes/lokatech/static/images/article-platform-engineering.jpg +0 -0
- package/starters/lokatech/themes/lokatech/static/images/barka-logo.png +0 -0
- package/starters/lokatech/themes/lokatech/static/images/case-study-banking-dashboard.jpg +0 -0
- package/starters/lokatech/themes/lokatech/static/images/case-study-banking.png +0 -0
- package/starters/lokatech/themes/lokatech/static/images/case-study-ecommerce-dashboard.jpg +0 -0
- package/starters/lokatech/themes/lokatech/static/images/case-study-healthcare-dashboard.jpg +0 -0
- package/starters/lokatech/themes/lokatech/static/images/case-study-healthcare.png +0 -0
- package/starters/lokatech/themes/lokatech/static/images/case-study-retail.png +0 -0
- package/starters/lokatech/themes/lokatech/static/images/hero-bg.png +0 -0
- package/starters/lokatech/themes/lokatech/static/images/lokatech-logo.png +0 -0
- package/starters/lokatech/themes/lokatech/static/images/office-warsaw.png +0 -0
- package/starters/lokatech/themes/lokatech/static/images/team-anna-kowalska.png +0 -0
- package/starters/lokatech/themes/lokatech/static/images/team-collaboration.jpg +0 -0
- package/starters/lokatech/themes/lokatech/static/images/team-jan-nowak.png +0 -0
- package/starters/lokatech/themes/lokatech/static/images/team-katarzyna-kaminska.png +0 -0
- package/starters/lokatech/themes/lokatech/static/images/team-maria-wisniewska.png +0 -0
- package/starters/lokatech/themes/lokatech/static/images/team-strategy-session.jpg +0 -0
- package/starters/lokatech/themes/lokatech/static/images/team-tomasz-lewandowski.png +0 -0
- package/starters/lokatech/themes/lokatech/static/style.css +495 -0
- package/starters/lokatech/themes/lokatech/theme.yaml +21 -0
- package/starters/lokatech/themes/starter/_types.ts +93 -0
- package/starters/lokatech/themes/starter/components/blog-listing/blog-listing.tsx +102 -0
- package/starters/lokatech/themes/starter/components/blog-listing/schema.yaml +21 -0
- package/starters/lokatech/themes/starter/components/columns/columns.tsx +101 -0
- package/starters/lokatech/themes/starter/components/columns/schema.yaml +23 -0
- package/starters/lokatech/themes/starter/components/counters/counters.css +13 -0
- package/starters/lokatech/themes/starter/components/counters/counters.tsx +81 -0
- package/starters/lokatech/themes/starter/components/counters/schema.yaml +23 -0
- package/starters/lokatech/themes/starter/components/cta/cta.tsx +57 -0
- package/starters/lokatech/themes/starter/components/cta/schema.yaml +30 -0
- package/starters/lokatech/themes/starter/components/faq/faq.tsx +77 -0
- package/starters/lokatech/themes/starter/components/faq/schema.yaml +20 -0
- package/starters/lokatech/themes/starter/components/features/features.tsx +82 -0
- package/starters/lokatech/themes/starter/components/features/schema.yaml +19 -0
- package/starters/lokatech/themes/starter/components/form/form.tsx +126 -0
- package/starters/lokatech/themes/starter/components/form/schema.yaml +18 -0
- package/starters/lokatech/themes/starter/components/gallery/gallery.tsx +85 -0
- package/starters/lokatech/themes/starter/components/gallery/schema.yaml +27 -0
- package/starters/lokatech/themes/starter/components/hero/hero.tsx +77 -0
- package/starters/lokatech/themes/starter/components/hero/schema.yaml +26 -0
- package/starters/lokatech/themes/starter/components/logo-slider/logo-slider.css +21 -0
- package/starters/lokatech/themes/starter/components/logo-slider/logo-slider.tsx +81 -0
- package/starters/lokatech/themes/starter/components/logo-slider/schema.yaml +23 -0
- package/starters/lokatech/themes/starter/components/pricing/pricing.tsx +141 -0
- package/starters/lokatech/themes/starter/components/pricing/schema.yaml +44 -0
- package/starters/lokatech/themes/starter/components/testimonials/schema.yaml +26 -0
- package/starters/lokatech/themes/starter/components/testimonials/testimonials.tsx +100 -0
- package/starters/lokatech/themes/starter/components/text/schema.yaml +12 -0
- package/starters/lokatech/themes/starter/components/text/text.tsx +62 -0
- package/starters/lokatech/themes/starter/components/text-with-image/schema.yaml +30 -0
- package/starters/lokatech/themes/starter/components/text-with-image/text-with-image.tsx +86 -0
- package/starters/lokatech/themes/starter/components/video/schema.yaml +19 -0
- package/starters/lokatech/themes/starter/components/video/video.tsx +98 -0
- package/starters/lokatech/themes/starter/layouts/article.tsx +42 -0
- package/starters/lokatech/themes/starter/layouts/base.tsx +92 -0
- package/starters/lokatech/themes/starter/layouts/landing-page.tsx +14 -0
- package/starters/lokatech/themes/starter/layouts/page.tsx +29 -0
- package/starters/lokatech/themes/starter/partials/footer.tsx +22 -0
- package/starters/lokatech/themes/starter/partials/header.tsx +32 -0
- package/starters/lokatech/themes/starter/static/style.css +125 -0
- package/starters/lokatech/themes/starter/theme.yaml +16 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-023"
|
|
3
|
+
title: "The Complete Guide to Temporary Staffing in Poland"
|
|
4
|
+
type: article
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: temporary-staffing-guide
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
category: "Staffing Guide"
|
|
11
|
+
tags:
|
|
12
|
+
- temporary-staffing
|
|
13
|
+
- labor-law
|
|
14
|
+
- poland
|
|
15
|
+
- compliance
|
|
16
|
+
author: "Tomasz Nowak"
|
|
17
|
+
author_role: "COO"
|
|
18
|
+
author_image: "https://placehold.co/100x100/14101E/F59E0B?text=TN"
|
|
19
|
+
featured_image: "https://placehold.co/800x400/14101E/F59E0B?text=Temporary+Staffing+Guide"
|
|
20
|
+
excerpt: "Everything employers need to know about temporary staffing in Poland — legal framework, contract types, costs, compliance requirements, and best practices."
|
|
21
|
+
reading_time: "10 min"
|
|
22
|
+
seo:
|
|
23
|
+
title: "Complete Guide to Temporary Staffing in Poland — KadoServices"
|
|
24
|
+
description: "Comprehensive guide to temporary staffing in Poland. Legal framework, contract types, employer obligations, costs, and compliance requirements for 2026."
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
Temporary staffing is one of Poland's fastest-growing employment models, with over 800,000 temporary workers placed annually through staffing agencies. For employers, temporary staffing offers workforce flexibility, reduced administrative burden, and the ability to scale headcount in line with business demand. But Poland's temporary employment regulations are among the most detailed in Europe — and non-compliance carries real penalties.
|
|
28
|
+
|
|
29
|
+
This guide covers everything employers need to know about using temporary workers in Poland in 2026.
|
|
30
|
+
|
|
31
|
+
## The Legal Framework
|
|
32
|
+
|
|
33
|
+
Temporary employment in Poland is governed by the Act on Employment of Temporary Workers (Ustawa o zatrudnianiu pracowników tymczasowych) of July 9, 2003, as amended. The law establishes a three-party relationship: the temporary work agency (agencja pracy tymczasowej) employs the worker, who performs work for and under the supervision of the user employer (pracodawca użytkownik).
|
|
34
|
+
|
|
35
|
+
**Key legal requirements:**
|
|
36
|
+
- The agency must hold a valid certificate from the Voivodeship Employment Office (KRAZ register)
|
|
37
|
+
- A written agreement must exist between the agency and the user employer specifying the scope of work, duration, and working conditions
|
|
38
|
+
- Temporary workers are entitled to the same basic working conditions as comparable permanent employees of the user employer
|
|
39
|
+
|
|
40
|
+
## Maximum Assignment Duration
|
|
41
|
+
|
|
42
|
+
The law limits temporary assignments to **18 months within a 36-month period** for any given worker at any given user employer. This applies cumulatively — if a worker completes an 18-month assignment, they cannot return to the same user employer through any agency for the next 18 months. After the 36-month cooling-off period, a new 18-month assignment can begin.
|
|
43
|
+
|
|
44
|
+
Importantly, the 18-month limit is per worker per user employer, regardless of which agency provides the worker. Employers who try to circumvent the limit by switching agencies risk penalties.
|
|
45
|
+
|
|
46
|
+
## Contract Types
|
|
47
|
+
|
|
48
|
+
Temporary staffing agencies in Poland can employ workers under several contract types:
|
|
49
|
+
|
|
50
|
+
**Employment contract (umowa o pracę na czas określony)** — The most common form. The worker is a full employee of the agency with all statutory protections — paid leave, sick leave, notice periods, ZUS contributions. This is the recommended approach for assignments longer than 3 months.
|
|
51
|
+
|
|
52
|
+
**Civil law contract — mandate agreement (umowa zlecenie)** — Used for shorter assignments or specific tasks. Provides fewer worker protections but still requires ZUS contributions (health and pension insurance). Subject to minimum hourly wage requirements.
|
|
53
|
+
|
|
54
|
+
**Civil law contract — specific task agreement (umowa o dzieło)** — Limited to work resulting in a specific, measurable output. Not subject to ZUS contributions (except for the agency's own employees). Usage is closely scrutinized by ZUS auditors.
|
|
55
|
+
|
|
56
|
+
## Employer Obligations
|
|
57
|
+
|
|
58
|
+
While the staffing agency handles employment administration, the user employer has specific legal obligations:
|
|
59
|
+
|
|
60
|
+
- Provide safe working conditions and workplace risk assessments
|
|
61
|
+
- Conduct BHP (health and safety) training specific to the workplace
|
|
62
|
+
- Ensure equal treatment with permanent employees regarding working time, breaks, and access to facilities
|
|
63
|
+
- Do not assign temporary workers to tasks that are prohibited for this employment form (including replacing striking workers)
|
|
64
|
+
- Maintain records of temporary workers and their assignment durations for potential labor inspections
|
|
65
|
+
|
|
66
|
+
## Cost Structure
|
|
67
|
+
|
|
68
|
+
The cost of temporary staffing includes the worker's gross salary, employer-side ZUS contributions (approximately 20% of gross), agency service margin (typically 15-25% of total labor cost), and any additional costs (medical examinations, safety training, PPE). For a worker earning PLN 5,000 gross monthly, the total cost to the user employer typically ranges from PLN 7,500 to PLN 8,500 including all contributions and agency fees.
|
|
69
|
+
|
|
70
|
+
## Best Practices
|
|
71
|
+
|
|
72
|
+
1. **Plan ahead** — Give your staffing agency at least 2-3 weeks lead time for standard roles, 4-6 weeks for specialized positions
|
|
73
|
+
2. **Invest in onboarding** — Temporary workers who receive proper induction perform better and stay longer
|
|
74
|
+
3. **Track assignment durations** — Monitor the 18/36-month limit to avoid compliance violations
|
|
75
|
+
4. **Treat temporary workers well** — Your employer brand extends to how you treat agency staff
|
|
76
|
+
5. **Consider temp-to-perm** — Many successful permanent hires start as temporary assignments, giving both parties a trial period
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-024"
|
|
3
|
+
title: "Kompletny przewodnik po pracy tymczasowej w Polsce"
|
|
4
|
+
type: article
|
|
5
|
+
status: published
|
|
6
|
+
langcode: pl
|
|
7
|
+
slug: temporary-staffing-guide
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
category: "Przewodnik"
|
|
11
|
+
tags:
|
|
12
|
+
- praca-tymczasowa
|
|
13
|
+
- prawo-pracy
|
|
14
|
+
- polska
|
|
15
|
+
- compliance
|
|
16
|
+
author: "Tomasz Nowak"
|
|
17
|
+
author_role: "COO"
|
|
18
|
+
author_image: "https://placehold.co/100x100/14101E/F59E0B?text=TN"
|
|
19
|
+
featured_image: "https://placehold.co/800x400/14101E/F59E0B?text=Przewodnik+Praca+Tymczasowa"
|
|
20
|
+
excerpt: "Wszystko, co pracodawcy muszą wiedzieć o pracy tymczasowej w Polsce — ramy prawne, rodzaje umów, koszty, wymagania compliance i najlepsze praktyki."
|
|
21
|
+
reading_time: "10 min"
|
|
22
|
+
seo:
|
|
23
|
+
title: "Kompletny przewodnik po pracy tymczasowej w Polsce — KadoServices"
|
|
24
|
+
description: "Kompleksowy przewodnik po pracy tymczasowej w Polsce. Ramy prawne, rodzaje umów, obowiązki pracodawcy, koszty i wymagania compliance na 2026 rok."
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
Praca tymczasowa to jeden z najszybciej rozwijających się modeli zatrudnienia w Polsce — ponad 800 000 pracowników tymczasowych jest kierowanych rocznie przez agencje pracy. Dla pracodawców praca tymczasowa oferuje elastyczność kadrową, mniejsze obciążenie administracyjne i możliwość skalowania zatrudnienia w zgodzie z potrzebami biznesowymi. Jednak polskie przepisy dotyczące zatrudnienia tymczasowego należą do najbardziej szczegółowych w Europie — a niezgodność wiąże się z realnymi karami.
|
|
28
|
+
|
|
29
|
+
Ten przewodnik obejmuje wszystko, co pracodawcy muszą wiedzieć o korzystaniu z pracowników tymczasowych w Polsce w 2026 roku.
|
|
30
|
+
|
|
31
|
+
## Ramy prawne
|
|
32
|
+
|
|
33
|
+
Zatrudnienie tymczasowe w Polsce reguluje Ustawa o zatrudnianiu pracowników tymczasowych z dnia 9 lipca 2003 r. ze zmianami. Ustawa ustanawia trójstronną relację: agencja pracy tymczasowej zatrudnia pracownika, który wykonuje pracę na rzecz i pod kierownictwem pracodawcy użytkownika.
|
|
34
|
+
|
|
35
|
+
**Kluczowe wymogi prawne:**
|
|
36
|
+
- Agencja musi posiadać ważny certyfikat z Wojewódzkiego Urzędu Pracy (rejestr KRAZ)
|
|
37
|
+
- Między agencją a pracodawcą użytkownikiem musi istnieć pisemna umowa określająca zakres pracy, czas trwania i warunki pracy
|
|
38
|
+
- Pracownicy tymczasowi mają prawo do takich samych podstawowych warunków pracy jak porównywalni pracownicy stali pracodawcy użytkownika
|
|
39
|
+
|
|
40
|
+
## Maksymalny czas skierowania
|
|
41
|
+
|
|
42
|
+
Ustawa ogranicza skierowania tymczasowe do **18 miesięcy w okresie 36 miesięcy** dla danego pracownika u danego pracodawcy użytkownika. Dotyczy to kumulatywnie — jeśli pracownik ukończy 18-miesięczne skierowanie, nie może wrócić do tego samego pracodawcy użytkownika przez żadną agencję przez kolejne 18 miesięcy. Po 36-miesięcznym okresie karencji można rozpocząć nowe 18-miesięczne skierowanie.
|
|
43
|
+
|
|
44
|
+
Co ważne, limit 18 miesięcy dotyczy pracownika u pracodawcy użytkownika, niezależnie od tego, która agencja kieruje pracownika. Pracodawcy, którzy próbują obejść limit zmieniając agencje, ryzykują kary.
|
|
45
|
+
|
|
46
|
+
## Rodzaje umów
|
|
47
|
+
|
|
48
|
+
Agencje pracy tymczasowej w Polsce mogą zatrudniać pracowników na kilka rodzajów umów:
|
|
49
|
+
|
|
50
|
+
**Umowa o pracę na czas określony** — Najczęstsza forma. Pracownik jest pełnoprawnym pracownikiem agencji ze wszystkimi ustawowymi zabezpieczeniami — płatny urlop, zwolnienie lekarskie, okresy wypowiedzenia, składki ZUS. Rekomendowane podejście dla skierowań dłuższych niż 3 miesiące.
|
|
51
|
+
|
|
52
|
+
**Umowa zlecenie** — Stosowana przy krótszych skierowaniach lub konkretnych zadaniach. Zapewnia mniejsze zabezpieczenia dla pracownika, ale nadal wymaga składek ZUS (ubezpieczenie zdrowotne i emerytalne). Podlega wymogom minimalnej stawki godzinowej.
|
|
53
|
+
|
|
54
|
+
**Umowa o dzieło** — Ograniczona do pracy dającej konkretny, mierzalny rezultat. Nie podlega składkom ZUS (z wyjątkiem własnych pracowników agencji). Jej stosowanie jest dokładnie kontrolowane przez audytorów ZUS.
|
|
55
|
+
|
|
56
|
+
## Obowiązki pracodawcy
|
|
57
|
+
|
|
58
|
+
Podczas gdy agencja pracy obsługuje administrację zatrudnienia, pracodawca użytkownik ma konkretne obowiązki prawne:
|
|
59
|
+
|
|
60
|
+
- Zapewnić bezpieczne warunki pracy i ocenę ryzyka zawodowego
|
|
61
|
+
- Przeprowadzić szkolenie BHP specyficzne dla stanowiska pracy
|
|
62
|
+
- Zapewnić równe traktowanie z pracownikami stałymi w zakresie czasu pracy, przerw i dostępu do obiektów
|
|
63
|
+
- Nie przydzielać pracownikom tymczasowym zadań zabronionych dla tej formy zatrudnienia (w tym zastępowania strajkujących)
|
|
64
|
+
- Prowadzić ewidencję pracowników tymczasowych i czasu ich skierowań na wypadek kontroli PIP
|
|
65
|
+
|
|
66
|
+
## Struktura kosztów
|
|
67
|
+
|
|
68
|
+
Koszt pracy tymczasowej obejmuje wynagrodzenie brutto pracownika, składki ZUS po stronie pracodawcy (ok. 20% brutto), marżę agencji (typowo 15-25% całkowitego kosztu pracy) oraz ewentualne dodatkowe koszty (badania lekarskie, szkolenia BHP, ŚOI). Dla pracownika zarabiającego 5000 zł brutto miesięcznie, łączny koszt pracodawcy użytkownika wynosi typowo od 7500 do 8500 zł z uwzględnieniem wszystkich składek i opłat agencji.
|
|
69
|
+
|
|
70
|
+
## Najlepsze praktyki
|
|
71
|
+
|
|
72
|
+
1. **Planuj z wyprzedzeniem** — Daj agencji co najmniej 2-3 tygodnie na standardowe stanowiska, 4-6 tygodni na pozycje specjalistyczne
|
|
73
|
+
2. **Inwestuj w onboarding** — Pracownicy tymczasowi z odpowiednim wdrożeniem osiągają lepsze wyniki i zostają dłużej
|
|
74
|
+
3. **Monitoruj czas skierowań** — Śledź limit 18/36 miesięcy, aby uniknąć naruszeń compliance
|
|
75
|
+
4. **Traktuj pracowników tymczasowych dobrze** — Twoja marka pracodawcy obejmuje też sposób traktowania personelu agencyjnego
|
|
76
|
+
5. **Rozważ temp-to-perm** — Wiele udanych zatrudnień stałych zaczyna się od skierowań tymczasowych, dając obu stronom okres próbny
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-020"
|
|
3
|
+
title: "Full RPO Program for Shared Services Center"
|
|
4
|
+
type: case_study
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: finance-rpo-program
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
client_name: "GlobalFinance SSC"
|
|
11
|
+
industry: finance
|
|
12
|
+
service: outsourcing-rpo
|
|
13
|
+
duration: "Ongoing (24+ months)"
|
|
14
|
+
team_size: "6 embedded recruiters"
|
|
15
|
+
hires_delivered: "380+"
|
|
16
|
+
time_to_fill: "18 days avg"
|
|
17
|
+
retention_rate: "89%"
|
|
18
|
+
featured_image: "/static/images/handshake.jpg"
|
|
19
|
+
tags:
|
|
20
|
+
- finance
|
|
21
|
+
- RPO
|
|
22
|
+
- shared-services
|
|
23
|
+
- multilingual
|
|
24
|
+
metrics:
|
|
25
|
+
- value: "40%"
|
|
26
|
+
label: "Cost reduction"
|
|
27
|
+
- value: "380+"
|
|
28
|
+
label: "Hires in 24 months"
|
|
29
|
+
- value: "18 days"
|
|
30
|
+
label: "Avg. time-to-fill"
|
|
31
|
+
- value: "89%"
|
|
32
|
+
label: "12-month retention"
|
|
33
|
+
client_quote: "KadoServices transformed our recruitment function. We went from spending 25% of management time on hiring to having a professional, data-driven process that delivers better candidates, faster, and at lower cost."
|
|
34
|
+
client_quote_author: "Managing Director"
|
|
35
|
+
client_quote_role: "GlobalFinance SSC Kraków"
|
|
36
|
+
seo:
|
|
37
|
+
title: "Case Study: Full RPO for Shared Services Center — KadoServices"
|
|
38
|
+
description: "How KadoServices delivered a full RPO program for a finance SSC. 40% cost reduction, 380+ hires, 18-day time-to-fill."
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## The Challenge
|
|
42
|
+
|
|
43
|
+
GlobalFinance SSC, the Kraków-based shared services center of a Fortune 500 financial services group, was growing from 400 to 800+ employees over a 24-month period. The center provides finance & accounting, controlling, and reporting services in 8 languages (English, German, French, Dutch, Spanish, Italian, Polish, and Czech) for the group's European operations.
|
|
44
|
+
|
|
45
|
+
The internal HR team of 3 was overwhelmed. Time-to-fill had stretched to 45+ days. Hiring managers were spending 25% of their time on recruitment activities. The company was using 7 different staffing agencies with inconsistent quality, no unified reporting, and a cost-per-hire that was 30% above market benchmarks. Candidate experience surveys showed declining satisfaction scores, and the center's Glassdoor rating had dropped.
|
|
46
|
+
|
|
47
|
+
## The Solution
|
|
48
|
+
|
|
49
|
+
KadoServices designed and implemented a full Recruitment Process Outsourcing (RPO) program — embedding a dedicated team of 6 recruiters in GlobalFinance SSC's Kraków office, operating under the client's employer brand.
|
|
50
|
+
|
|
51
|
+
**Transition phase (weeks 1-6).** KadoServices onboarded the RPO team, integrated with the client's Workday ATS, trained on company culture and hiring standards, and took over all active requisitions from the 7 previous agencies. A shared Kraków office space was set up with direct access to hiring managers.
|
|
52
|
+
|
|
53
|
+
**Process redesign.** We mapped the existing recruitment process, identified 12 bottlenecks (including a 5-step approval workflow that added 8 days to every requisition), and redesigned the end-to-end process. The new process reduced approval steps to 2, implemented structured interview scorecards, and introduced language testing as a standard screening step.
|
|
54
|
+
|
|
55
|
+
**Sourcing strategy.** Multilingual finance talent in Kraków is fiercely competitive. We deployed a multi-channel sourcing strategy: university partnerships (UEK, UJ, AGH), language school networks, expat community outreach, and a targeted employer branding campaign on LinkedIn highlighting the center's language training programs and career development paths.
|
|
56
|
+
|
|
57
|
+
**Analytics & continuous improvement.** Monthly dashboards tracked 15+ KPIs including time-to-fill, cost-per-hire, source effectiveness, candidate NPS, and hiring manager satisfaction. Quarterly business reviews with the client's leadership team drove ongoing process improvements.
|
|
58
|
+
|
|
59
|
+
## The Results
|
|
60
|
+
|
|
61
|
+
- **40% reduction in cost-per-hire** — from consolidating 7 agencies to 1 RPO team and optimizing sourcing channels
|
|
62
|
+
- **380+ hires** in 24 months — covering all planned growth plus backfills
|
|
63
|
+
- **18-day average time-to-fill** — down from 45+ days before the RPO program
|
|
64
|
+
- **89% 12-month retention** — up from 74% in the previous model
|
|
65
|
+
- **Candidate NPS: +42** — up from -8, reflecting dramatically improved candidate experience
|
|
66
|
+
- **Glassdoor rating improved** from 3.2 to 4.1 stars following employer brand activation
|
|
67
|
+
|
|
68
|
+
The program has been extended for a third year and expanded to include the client's new Budapest shared services center, with KadoServices managing recruitment across both locations.
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-017"
|
|
3
|
+
title: "500 Hires in 3 Months for Automotive Plant"
|
|
4
|
+
type: case_study
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: manufacturing-mass-recruitment
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
client_name: "AutomotiveCorp"
|
|
11
|
+
industry: manufacturing
|
|
12
|
+
service: permanent-recruitment
|
|
13
|
+
duration: "3 months"
|
|
14
|
+
team_size: "12 recruiters"
|
|
15
|
+
hires_delivered: "500"
|
|
16
|
+
time_to_fill: "12 days avg"
|
|
17
|
+
retention_rate: "94%"
|
|
18
|
+
featured_image: "/static/images/team-meeting.jpg"
|
|
19
|
+
tags:
|
|
20
|
+
- manufacturing
|
|
21
|
+
- mass-recruitment
|
|
22
|
+
- automotive
|
|
23
|
+
- temporary-staffing
|
|
24
|
+
metrics:
|
|
25
|
+
- value: "500"
|
|
26
|
+
label: "Hires delivered"
|
|
27
|
+
- value: "12 days"
|
|
28
|
+
label: "Avg. time-to-fill"
|
|
29
|
+
- value: "94%"
|
|
30
|
+
label: "Retention after 6 months"
|
|
31
|
+
- value: "15%"
|
|
32
|
+
label: "Under budget"
|
|
33
|
+
client_quote: "KadoServices delivered 500 qualified workers in three months — a timeline our internal team said was impossible. Their local market knowledge and pre-screened candidate pool made all the difference."
|
|
34
|
+
client_quote_author: "HR Director"
|
|
35
|
+
client_quote_role: "AutomotiveCorp Poland"
|
|
36
|
+
seo:
|
|
37
|
+
title: "Case Study: 500 Hires in 3 Months — KadoServices"
|
|
38
|
+
description: "How KadoServices recruited 500 production workers in 3 months for an automotive plant expansion. 94% retention, 12-day average time-to-fill."
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## The Challenge
|
|
42
|
+
|
|
43
|
+
AutomotiveCorp, a tier-1 automotive supplier, was expanding its production facility in the Silesia region to accommodate a major new contract from a European OEM. The expansion required 500 additional workers — production operators, CNC machinists, quality inspectors, and maintenance technicians — within a 3-month window. Missing the deadline meant penalties from the OEM and delayed production start.
|
|
44
|
+
|
|
45
|
+
The company's internal HR team of 4 recruiters was already at capacity managing existing operations. Local unemployment in the industrial zone was below 3%, and competing manufacturers were hiring aggressively. AutomotiveCorp needed an external partner with the scale, speed, and regional expertise to deliver.
|
|
46
|
+
|
|
47
|
+
## The Solution
|
|
48
|
+
|
|
49
|
+
KadoServices assembled a dedicated team of 12 recruiters across three offices — Katowice, Kraków, and Wrocław — to cover the Silesia, Małopolska, and Lower Silesia regions. The project was managed by a senior account director with 10+ years of manufacturing staffing experience.
|
|
50
|
+
|
|
51
|
+
**Phase 1: Weeks 1-2 — Rapid mobilization.** We conducted on-site visits to understand shift patterns, working conditions, and specific skill requirements. Job profiles were created for 8 distinct roles. Our existing database yielded 180 immediately available candidates matching the criteria.
|
|
52
|
+
|
|
53
|
+
**Phase 2: Weeks 3-8 — Intensive sourcing.** Multi-channel recruitment campaigns launched across regional job boards (Pracuj.pl, OLX Praca), social media, local employment offices (PUP), and community bulletin boards. Referral bonuses incentivized existing AutomotiveCorp employees and previously placed KadoServices workers. We organized 6 open recruitment days at our Katowice and Kraków offices.
|
|
54
|
+
|
|
55
|
+
**Phase 3: Weeks 6-12 — Screening and deployment.** Candidates underwent competency interviews, skills testing (CNC operation, welding certifications), medical examinations, and BHP safety training. Workers were deployed in cohorts of 40-60, with on-site KadoServices coordinators managing the first two weeks of each cohort's onboarding.
|
|
56
|
+
|
|
57
|
+
## The Results
|
|
58
|
+
|
|
59
|
+
- **500 workers hired** in 12 weeks — 2 weeks ahead of the contractual deadline
|
|
60
|
+
- **12-day average time-to-fill** from approved job profile to worker on-site
|
|
61
|
+
- **94% retention rate** after 6 months — exceeding the 85% target
|
|
62
|
+
- **15% under budget** — efficient sourcing and batch processing reduced cost-per-hire
|
|
63
|
+
- **Zero safety incidents** during onboarding — all workers completed BHP training and medical clearance before starting
|
|
64
|
+
|
|
65
|
+
The successful ramp-up enabled AutomotiveCorp to start production on schedule for the OEM contract. KadoServices was subsequently awarded a 2-year preferred supplier agreement covering all temporary and permanent staffing needs across the client's three Polish facilities.
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-018"
|
|
3
|
+
title: "500 zatrudnień w 3 miesiące dla zakładu motoryzacyjnego"
|
|
4
|
+
type: case_study
|
|
5
|
+
status: published
|
|
6
|
+
langcode: pl
|
|
7
|
+
slug: manufacturing-mass-recruitment
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
client_name: "AutomotiveCorp"
|
|
11
|
+
industry: manufacturing
|
|
12
|
+
service: permanent-recruitment
|
|
13
|
+
duration: "3 miesiące"
|
|
14
|
+
team_size: "12 rekruterów"
|
|
15
|
+
hires_delivered: "500"
|
|
16
|
+
time_to_fill: "śr. 12 dni"
|
|
17
|
+
retention_rate: "94%"
|
|
18
|
+
featured_image: "/static/images/team-meeting.jpg"
|
|
19
|
+
tags:
|
|
20
|
+
- produkcja
|
|
21
|
+
- rekrutacja-masowa
|
|
22
|
+
- motoryzacja
|
|
23
|
+
- praca-tymczasowa
|
|
24
|
+
metrics:
|
|
25
|
+
- value: "500"
|
|
26
|
+
label: "Zatrudnionych pracowników"
|
|
27
|
+
- value: "12 dni"
|
|
28
|
+
label: "Śr. czas obsadzenia"
|
|
29
|
+
- value: "94%"
|
|
30
|
+
label: "Retencja po 6 miesiącach"
|
|
31
|
+
- value: "15%"
|
|
32
|
+
label: "Poniżej budżetu"
|
|
33
|
+
client_quote: "KadoServices dostarczyło 500 wykwalifikowanych pracowników w trzy miesiące — termin, który nasz wewnętrzny zespół uznał za niemożliwy. Ich znajomość lokalnego rynku i baza wstępnie zweryfikowanych kandydatów zrobiły różnicę."
|
|
34
|
+
client_quote_author: "Dyrektor HR"
|
|
35
|
+
client_quote_role: "AutomotiveCorp Polska"
|
|
36
|
+
seo:
|
|
37
|
+
title: "Case Study: 500 zatrudnień w 3 miesiące — KadoServices"
|
|
38
|
+
description: "Jak KadoServices zrekrutowało 500 pracowników produkcyjnych w 3 miesiące dla rozbudowy zakładu motoryzacyjnego. 94% retencja, średnio 12 dni obsadzenia."
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Wyzwanie
|
|
42
|
+
|
|
43
|
+
AutomotiveCorp, dostawca motoryzacyjny tier-1, rozbudowywał swoją fabrykę na Śląsku w związku z nowym kontraktem od europejskiego OEM. Ekspansja wymagała 500 dodatkowych pracowników — operatorów produkcji, operatorów CNC, inspektorów jakości i techników utrzymania ruchu — w ciągu 3 miesięcy. Niedotrzymanie terminu oznaczało kary od OEM i opóźniony start produkcji.
|
|
44
|
+
|
|
45
|
+
Wewnętrzny zespół HR firmy, liczący 4 rekruterów, był już na pełnych obrotach przy obsłudze bieżących operacji. Lokalne bezrobocie w strefie przemysłowej wynosiło poniżej 3%, a konkurencyjne zakłady produkcyjne agresywnie rekrutowały. AutomotiveCorp potrzebował zewnętrznego partnera ze skalą, szybkością i regionalną ekspertyzą.
|
|
46
|
+
|
|
47
|
+
## Rozwiązanie
|
|
48
|
+
|
|
49
|
+
KadoServices powołało dedykowany zespół 12 rekruterów z trzech biur — Katowice, Kraków i Wrocław — obejmujących regiony Śląska, Małopolski i Dolnego Śląska. Projektem zarządzał senior account director z ponad 10-letnim doświadczeniem w staffingu produkcyjnym.
|
|
50
|
+
|
|
51
|
+
**Faza 1: Tygodnie 1-2 — Szybka mobilizacja.** Przeprowadziliśmy wizyty na miejscu, aby zrozumieć wzorce zmianowe, warunki pracy i szczegółowe wymagania kompetencyjne. Stworzono profile stanowisk dla 8 różnych ról. Nasza istniejąca baza danych dostarczyła 180 natychmiast dostępnych kandydatów spełniających kryteria.
|
|
52
|
+
|
|
53
|
+
**Faza 2: Tygodnie 3-8 — Intensywny sourcing.** Wielokanałowe kampanie rekrutacyjne uruchomione na regionalnych portalach pracy (Pracuj.pl, OLX Praca), w mediach społecznościowych, lokalnych urzędach pracy (PUP) i na tablicach ogłoszeń. Bonusy za polecenia motywowały obecnych pracowników AutomotiveCorp i wcześniej zatrudnionych przez KadoServices pracowników. Zorganizowaliśmy 6 otwartych dni rekrutacyjnych w naszych biurach w Katowicach i Krakowie.
|
|
54
|
+
|
|
55
|
+
**Faza 3: Tygodnie 6-12 — Selekcja i wdrożenie.** Kandydaci przeszli rozmowy kompetencyjne, testy umiejętności (obsługa CNC, certyfikaty spawalnicze), badania lekarskie i szkolenie BHP. Pracownicy byli wdrażani w kohortach 40-60 osób, z koordynatorami KadoServices na miejscu zarządzającymi pierwszymi dwoma tygodniami onboardingu każdej kohorty.
|
|
56
|
+
|
|
57
|
+
## Wyniki
|
|
58
|
+
|
|
59
|
+
- **500 pracowników zatrudnionych** w 12 tygodni — 2 tygodnie przed terminem kontraktowym
|
|
60
|
+
- **Średnio 12 dni obsadzenia** od zatwierdzenia profilu stanowiska do pracownika na miejscu
|
|
61
|
+
- **94% retencja** po 6 miesiącach — powyżej celu 85%
|
|
62
|
+
- **15% poniżej budżetu** — efektywny sourcing i przetwarzanie grupowe obniżyły koszt zatrudnienia
|
|
63
|
+
- **Zero wypadków BHP** podczas onboardingu — wszyscy pracownicy ukończyli szkolenie BHP i badania lekarskie przed rozpoczęciem pracy
|
|
64
|
+
|
|
65
|
+
Udany ramp-up umożliwił AutomotiveCorp terminowy start produkcji dla kontraktu OEM. KadoServices zostało następnie wybrane jako preferowany dostawca na 2-letnią umowę obejmującą wszystkie potrzeby kadrowe tymczasowe i stałe w trzech polskich zakładach klienta.
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-019"
|
|
3
|
+
title: "1,200 Seasonal Workers for National Retail Chain"
|
|
4
|
+
type: case_study
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: retail-seasonal-staffing
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
client_name: "RetailPol"
|
|
11
|
+
industry: retail
|
|
12
|
+
service: temporary-staffing
|
|
13
|
+
duration: "8 weeks (peak period)"
|
|
14
|
+
team_size: "8 recruiters + 4 on-site coordinators"
|
|
15
|
+
hires_delivered: "1,200"
|
|
16
|
+
time_to_fill: "7 days avg"
|
|
17
|
+
retention_rate: "91%"
|
|
18
|
+
featured_image: "/static/images/office.jpg"
|
|
19
|
+
tags:
|
|
20
|
+
- retail
|
|
21
|
+
- seasonal-staffing
|
|
22
|
+
- temporary-workers
|
|
23
|
+
- multi-location
|
|
24
|
+
metrics:
|
|
25
|
+
- value: "1,200"
|
|
26
|
+
label: "Workers deployed"
|
|
27
|
+
- value: "98%"
|
|
28
|
+
label: "Fill rate"
|
|
29
|
+
- value: "40"
|
|
30
|
+
label: "Locations staffed"
|
|
31
|
+
- value: "91%"
|
|
32
|
+
label: "Completion rate"
|
|
33
|
+
client_quote: "We've worked with multiple staffing agencies for our holiday season, but KadoServices is the only one that consistently delivers across all 40 locations. Their 98% fill rate is unmatched."
|
|
34
|
+
client_quote_author: "VP Operations"
|
|
35
|
+
client_quote_role: "RetailPol"
|
|
36
|
+
seo:
|
|
37
|
+
title: "Case Study: 1,200 Seasonal Workers for Retail — KadoServices"
|
|
38
|
+
description: "How KadoServices deployed 1,200 seasonal workers across 40 retail locations. 98% fill rate, 91% assignment completion rate."
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## The Challenge
|
|
42
|
+
|
|
43
|
+
RetailPol, one of Poland's largest home improvement retail chains with 40 stores nationwide, needed 1,200 additional workers for the spring/summer peak season — their busiest period, accounting for 35% of annual revenue. Roles included sales assistants, warehouse operatives, forklift drivers, cashiers, and customer service representatives.
|
|
44
|
+
|
|
45
|
+
The challenge was threefold: scale (1,200 workers across 40 geographically dispersed locations), speed (all workers needed within an 8-week ramp-up window), and quality (workers had to be trained in product knowledge, safety procedures, and customer service standards before peak season began).
|
|
46
|
+
|
|
47
|
+
Previous years' experience with multiple staffing agencies had produced inconsistent results — some locations were fully staffed while others operated with 60-70% coverage. RetailPol wanted a single partner who could guarantee consistent delivery nationwide.
|
|
48
|
+
|
|
49
|
+
## The Solution
|
|
50
|
+
|
|
51
|
+
KadoServices was appointed as the sole seasonal staffing partner, managing recruitment, employment, payroll, and on-site coordination for all 1,200 positions.
|
|
52
|
+
|
|
53
|
+
**Centralized planning, local execution.** A project management team in Warsaw coordinated the overall program — volume allocation per store, timeline milestones, and quality standards. Recruitment execution was distributed across 8 KadoServices offices closest to the store clusters, with local recruiters who knew the regional labor markets.
|
|
54
|
+
|
|
55
|
+
**12-week advance preparation.** Planning started 12 weeks before the peak season. Weeks 1-4 focused on candidate sourcing and database building. Weeks 5-8 covered screening, assessments, and pre-employment processing. Weeks 9-12 managed staggered onboarding across all 40 locations.
|
|
56
|
+
|
|
57
|
+
**On-site coordination.** Four KadoServices on-site coordinators — each responsible for 10 stores — managed attendance, shift scheduling, performance monitoring, and real-time replacements. A centralized hotline provided 24/7 support for store managers.
|
|
58
|
+
|
|
59
|
+
**Payroll & compliance.** KadoServices served as the legal employer for all 1,200 seasonal workers, handling employment contracts, monthly payroll, ZUS contributions, and all statutory obligations.
|
|
60
|
+
|
|
61
|
+
## The Results
|
|
62
|
+
|
|
63
|
+
- **1,200 workers deployed** across 40 locations within the 8-week window
|
|
64
|
+
- **98% fill rate** — only 24 positions out of 1,200 remained unfilled (vs. 70-85% in previous years with multiple agencies)
|
|
65
|
+
- **91% assignment completion** — workers who started their assignment completed the full seasonal period
|
|
66
|
+
- **Zero compliance findings** during a random labor inspection at the Kraków store
|
|
67
|
+
- **12% cost savings** vs. the previous multi-agency model, due to volume efficiencies and reduced administrative overhead
|
|
68
|
+
|
|
69
|
+
RetailPol renewed the partnership for the following holiday season and expanded the scope to include permanent recruitment for store management positions.
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-015"
|
|
3
|
+
title: "Finance & Shared Services"
|
|
4
|
+
type: industry
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: finance-shared-services
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
short_description: "Accountants, financial analysts, SSC professionals, and finance leadership. Staffing for banks, SSCs, insurance companies, and fintech."
|
|
11
|
+
icon: landmark
|
|
12
|
+
workforce_challenges:
|
|
13
|
+
- "Poland hosts 1,500+ shared services centers competing for the same multilingual talent"
|
|
14
|
+
- "ACCA, CIMA, and CFA-qualified professionals are in high demand with limited supply"
|
|
15
|
+
- "Language requirements (German, French, Dutch, Nordic) narrow the candidate pool significantly"
|
|
16
|
+
- "Regulatory changes (IFRS updates, ESG reporting) require continuous upskilling"
|
|
17
|
+
- "Remote work policies from Western European employers compete with local SSC offerings"
|
|
18
|
+
- "High turnover in entry-level SSC positions as candidates use them as stepping stones"
|
|
19
|
+
key_roles:
|
|
20
|
+
- "Accounts payable / receivable specialists"
|
|
21
|
+
- "General ledger accountants"
|
|
22
|
+
- "Financial analysts & controllers"
|
|
23
|
+
- "Management accountants (ACCA/CIMA)"
|
|
24
|
+
- "Tax specialists & advisors"
|
|
25
|
+
- "Internal auditors"
|
|
26
|
+
- "SSC team leaders & managers"
|
|
27
|
+
- "Finance directors & CFOs"
|
|
28
|
+
- "Compliance officers & AML specialists"
|
|
29
|
+
- "Process improvement specialists (Lean/Six Sigma)"
|
|
30
|
+
compliance_notes: "For regulated financial institutions, we verify professional certifications, conduct enhanced background checks, and comply with sector-specific vetting requirements including conflict-of-interest screening."
|
|
31
|
+
related_services: "permanent-recruitment, outsourcing-rpo, payroll-hr-admin"
|
|
32
|
+
seo:
|
|
33
|
+
title: "Finance & Shared Services Staffing — KadoServices"
|
|
34
|
+
description: "Staffing for finance and shared services. Accountants, analysts, SSC professionals. Multilingual talent, certified specialists, RPO programs."
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Poland's Shared Services Boom
|
|
38
|
+
|
|
39
|
+
Poland is Europe's leading destination for shared services and business process outsourcing, hosting over 1,500 service centers that employ 400,000+ professionals. Cities like Warsaw, Kraków, Wrocław, and Katowice have become global hubs for finance & accounting, IT, and business operations. Major employers include JP Morgan, Goldman Sachs, Citi, Shell, ABB, and Capgemini.
|
|
40
|
+
|
|
41
|
+
This concentration creates intense competition for talent — especially multilingual professionals with finance qualifications. KadoServices has been a trusted staffing partner for Poland's SSC sector since its early growth phase, and we understand the unique hiring dynamics of shared services environments.
|
|
42
|
+
|
|
43
|
+
## What Makes Finance Recruitment Different
|
|
44
|
+
|
|
45
|
+
Finance and SSC recruitment requires a specialized approach. Candidates need specific combinations of language skills, technical qualifications, and domain knowledge that are rare in the market. A German-speaking ACCA-qualified accountant with SAP experience, for example, might have 10+ companies competing for their attention simultaneously.
|
|
46
|
+
|
|
47
|
+
**Language assessment.** Every multilingual candidate undergoes language testing — not just self-reported proficiency levels. We test business communication capability in the relevant language, not just conversational fluency.
|
|
48
|
+
|
|
49
|
+
**Qualification verification.** We verify ACCA, CIMA, CFA, and other professional certifications directly with issuing bodies. For roles requiring specific regulatory knowledge, we assess candidates' understanding of relevant frameworks (IFRS, US GAAP, SOX).
|
|
50
|
+
|
|
51
|
+
**Cultural fit for SSC environments.** Shared services work requires a specific mindset — process orientation, attention to detail, comfort with standardization, and the ability to work effectively in multinational teams. We assess these traits alongside technical skills.
|
|
52
|
+
|
|
53
|
+
## RPO for Shared Services
|
|
54
|
+
|
|
55
|
+
Our RPO programs are particularly popular with SSCs, where continuous high-volume hiring makes a dedicated recruitment team more cost-effective than individual agency placements. We operate embedded RPO teams in several of Poland's largest shared services centers, managing end-to-end recruitment under the client's employer brand.
|
|
56
|
+
|
|
57
|
+
## Building Finance Teams
|
|
58
|
+
|
|
59
|
+
From individual contributor roles to finance leadership, KadoServices recruits across the full finance hierarchy. Our specialized finance recruiters maintain active networks of ACCA, CIMA, and CFA candidates and understand the career progression patterns that motivate finance professionals.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-016"
|
|
3
|
+
title: "Healthcare"
|
|
4
|
+
type: industry
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: healthcare
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
short_description: "Nurses, caregivers, medical support staff, and healthcare administrators. Staffing for hospitals, clinics, elderly care facilities, and pharmaceutical companies."
|
|
11
|
+
icon: heart
|
|
12
|
+
workforce_challenges:
|
|
13
|
+
- "Poland faces a chronic shortage of nurses — 40,000+ unfilled positions nationwide"
|
|
14
|
+
- "Aging population is driving exponential growth in elderly care demand"
|
|
15
|
+
- "Healthcare workers emigrate to Western Europe for higher salaries"
|
|
16
|
+
- "Strict licensing and certification requirements extend time-to-hire"
|
|
17
|
+
- "24/7 operations with demanding shift patterns reduce candidate interest"
|
|
18
|
+
- "Burnout and high turnover among frontline healthcare workers"
|
|
19
|
+
key_roles:
|
|
20
|
+
- "Registered nurses (pielęgniarki)"
|
|
21
|
+
- "Caregivers & elderly care assistants (opiekunki)"
|
|
22
|
+
- "Medical laboratory technicians"
|
|
23
|
+
- "Physiotherapists & rehabilitation specialists"
|
|
24
|
+
- "Hospital administrators & clinic managers"
|
|
25
|
+
- "Pharmaceutical sales representatives"
|
|
26
|
+
- "Medical device specialists"
|
|
27
|
+
- "Clinical research associates"
|
|
28
|
+
- "Healthcare IT specialists"
|
|
29
|
+
compliance_notes: "All healthcare placements comply with Polish medical profession regulations. We verify nursing licenses (prawo wykonywania zawodu), medical certifications, and mandatory continuing education credits. International healthcare workers undergo credential recognition procedures through the relevant professional chambers."
|
|
30
|
+
related_services: "permanent-recruitment, temporary-staffing, payroll-hr-admin"
|
|
31
|
+
seo:
|
|
32
|
+
title: "Healthcare Staffing Solutions — KadoServices"
|
|
33
|
+
description: "Healthcare staffing in Poland. Nurses, caregivers, medical support staff. Licensed professionals, credential verification, 24/7 coverage."
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Healthcare Staffing in Crisis
|
|
37
|
+
|
|
38
|
+
Poland's healthcare system faces a workforce crisis that is deepening every year. The country has one of the lowest nurse-to-patient ratios in the EU, with an estimated shortage of 40,000+ nurses. An aging population — with the 65+ demographic projected to grow by 30% by 2035 — is driving unprecedented demand for elderly care, rehabilitation, and chronic disease management.
|
|
39
|
+
|
|
40
|
+
KadoServices' healthcare practice was established to address this critical need. We provide qualified, licensed healthcare professionals to hospitals, clinics, elderly care facilities, and pharmaceutical companies across Poland.
|
|
41
|
+
|
|
42
|
+
## Clinical Staffing
|
|
43
|
+
|
|
44
|
+
**Nursing.** We recruit registered nurses for hospitals, outpatient clinics, and private healthcare facilities. Every nurse placed through KadoServices holds a valid license to practice (prawo wykonywania zawodu pielęgniarki), current continuing education credits, and up-to-date medical examinations.
|
|
45
|
+
|
|
46
|
+
**Elderly care.** With Poland's elderly care sector growing rapidly, we provide trained caregivers for residential care homes, assisted living facilities, and home care agencies. Our caregivers complete specialized training in geriatric care, dementia support, and palliative care.
|
|
47
|
+
|
|
48
|
+
**Allied health.** Physiotherapists, laboratory technicians, medical imaging technicians, and other allied health professionals for hospitals and rehabilitation centers.
|
|
49
|
+
|
|
50
|
+
## Non-Clinical Healthcare Roles
|
|
51
|
+
|
|
52
|
+
Beyond clinical staff, we recruit the administrative and commercial professionals that keep healthcare organizations running:
|
|
53
|
+
|
|
54
|
+
- **Hospital administration** — Patient coordinators, medical records specialists, billing analysts, facility managers
|
|
55
|
+
- **Pharmaceutical** — Sales representatives, medical science liaisons, regulatory affairs specialists, clinical research associates
|
|
56
|
+
- **Healthcare IT** — EHR/EMR specialists, health informatics analysts, telemedicine platform managers
|
|
57
|
+
|
|
58
|
+
## International Recruitment
|
|
59
|
+
|
|
60
|
+
To help address Poland's healthcare worker shortage, KadoServices has developed international recruitment channels — particularly from Ukraine, Belarus, and the Philippines. We manage the entire process: credential recognition, language training, work permit applications, relocation support, and cultural integration programs.
|
|
61
|
+
|
|
62
|
+
## Compliance & Licensing
|
|
63
|
+
|
|
64
|
+
Healthcare staffing demands rigorous compliance. Every placement involves verification of professional licenses, educational credentials, malpractice history, and continuing education requirements. We maintain relationships with the Polish Chamber of Nurses and Midwives (NIPiP), the Medical Chamber (NIL), and other regulatory bodies to ensure our processes meet current standards.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-014"
|
|
3
|
+
title: "IT & Technology"
|
|
4
|
+
type: industry
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: it-technology
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
short_description: "Developers, system administrators, IT project managers, and technology leaders. Recruitment and contracting for Poland's booming tech sector."
|
|
11
|
+
icon: code
|
|
12
|
+
workforce_challenges:
|
|
13
|
+
- "Severe talent shortage — demand for IT specialists exceeds supply by an estimated 50,000+ roles"
|
|
14
|
+
- "Salary inflation in tech outpaces other sectors by 2-3x"
|
|
15
|
+
- "Remote work has expanded the competitive landscape to global employers"
|
|
16
|
+
- "Passive candidates dominate — 80% of top tech talent isn't actively job searching"
|
|
17
|
+
- "Rapid technology shifts (AI, cloud, cybersecurity) require constantly evolving skill sets"
|
|
18
|
+
- "Retention is difficult when developers receive 5-10 recruiter messages per week"
|
|
19
|
+
key_roles:
|
|
20
|
+
- "Software developers (Java, .NET, Python, JavaScript)"
|
|
21
|
+
- "Frontend engineers (React, Angular, Vue)"
|
|
22
|
+
- "DevOps & Cloud engineers (AWS, Azure, GCP)"
|
|
23
|
+
- "Data engineers & data scientists"
|
|
24
|
+
- "Cybersecurity specialists & analysts"
|
|
25
|
+
- "IT project managers & Scrum Masters"
|
|
26
|
+
- "System administrators & network engineers"
|
|
27
|
+
- "CTO, VP Engineering, IT Directors"
|
|
28
|
+
- "QA engineers & test automation specialists"
|
|
29
|
+
compliance_notes: "For contract (B2B) engagements, we verify business registration, VAT status, and professional liability insurance. For employment-based roles, standard Polish labor law contracts and social contributions apply."
|
|
30
|
+
related_services: "permanent-recruitment, hr-consulting, employer-branding"
|
|
31
|
+
seo:
|
|
32
|
+
title: "IT & Technology Recruitment — KadoServices"
|
|
33
|
+
description: "IT recruitment in Poland. Developers, DevOps, data engineers, IT managers. Access to 15,000+ tech professionals, executive search, employer branding."
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Poland's Tech Talent Market
|
|
37
|
+
|
|
38
|
+
Poland has established itself as one of Europe's premier tech talent markets, with over 400,000 IT professionals and a pipeline of 80,000+ computer science graduates annually. The country hosts R&D centers for Google, Microsoft, Samsung, Intel, and dozens of global technology companies. Yet demand continues to far outstrip supply — creating one of the most competitive hiring environments in Europe.
|
|
39
|
+
|
|
40
|
+
KadoServices' IT recruitment practice was built to navigate this competitive landscape. Our tech recruiters are specialists — many with engineering backgrounds themselves — who understand the nuances of technology stacks, development methodologies, and what motivates IT professionals to change jobs.
|
|
41
|
+
|
|
42
|
+
## How We Find Tech Talent
|
|
43
|
+
|
|
44
|
+
Recruiting IT professionals requires a fundamentally different approach than traditional staffing. Job ads alone reach only 20% of the market — the active job seekers. The other 80% — the passive candidates who are happily employed but open to the right opportunity — require direct sourcing, relationship building, and compelling outreach.
|
|
45
|
+
|
|
46
|
+
**Tech-focused sourcing.** Our IT recruiters source through GitHub, Stack Overflow, LinkedIn, tech meetups, and developer communities. They speak the language of technology and can evaluate candidates' technical profiles before the first conversation.
|
|
47
|
+
|
|
48
|
+
**Technical assessment.** We partner with coding assessment platforms to validate technical skills before presenting candidates. For senior roles, our technical consultants conduct architecture discussions and system design interviews.
|
|
49
|
+
|
|
50
|
+
**Employer brand consulting.** In IT, your employer brand is your most powerful recruitment tool. We help tech companies build authentic employer brands that resonate with developers — showcasing tech stacks, engineering culture, and meaningful projects.
|
|
51
|
+
|
|
52
|
+
## Engagement Models
|
|
53
|
+
|
|
54
|
+
- **Permanent recruitment** — Direct hire with our guarantee period. Best for key technical roles and leadership positions.
|
|
55
|
+
- **Contract staffing (B2B)** — IT professionals engaged on B2B contracts for project-based work. We handle sourcing and compliance; you manage the project.
|
|
56
|
+
- **Team building** — We recruit entire development teams — from team leads to developers to QA — for new projects or product teams.
|
|
57
|
+
- **Executive search** — CTO, VP Engineering, and IT Director searches using our senior consultant network and confidential headhunting methodology.
|
|
58
|
+
|
|
59
|
+
## Salary Intelligence
|
|
60
|
+
|
|
61
|
+
Our proprietary IT salary database tracks compensation for 150+ technology roles across all major Polish cities. Updated quarterly, it provides real-time market intelligence on base salaries, B2B rates, benefits, and equity offerings — giving you the data to make competitive offers.
|