@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,54 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-012"
|
|
3
|
+
title: "Logistics & Transport"
|
|
4
|
+
type: industry
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: logistics
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
short_description: "Warehouse staff, drivers, supply chain specialists, and logistics managers. Scalable staffing for distribution centers, transport companies, and 3PL providers."
|
|
11
|
+
icon: truck
|
|
12
|
+
workforce_challenges:
|
|
13
|
+
- "E-commerce growth has created unprecedented demand for warehouse workers"
|
|
14
|
+
- "Professional driver shortage across Poland and Europe (category C, C+E, D)"
|
|
15
|
+
- "Peak season staffing — Black Friday, Christmas, and holiday periods require 2-3x workforce"
|
|
16
|
+
- "High turnover in entry-level warehouse roles due to physical demands"
|
|
17
|
+
- "Finding experienced supply chain managers and logistics planners"
|
|
18
|
+
- "24/7 operations require flexible shift coverage and reliable attendance management"
|
|
19
|
+
key_roles:
|
|
20
|
+
- "Warehouse operatives & order pickers"
|
|
21
|
+
- "Forklift operators (UDT certified)"
|
|
22
|
+
- "Truck drivers (C, C+E, D categories)"
|
|
23
|
+
- "Warehouse managers & shift leaders"
|
|
24
|
+
- "Supply chain planners & analysts"
|
|
25
|
+
- "Transport coordinators & dispatchers"
|
|
26
|
+
- "Customs & freight forwarding specialists"
|
|
27
|
+
- "Logistics directors & VP Operations"
|
|
28
|
+
- "Last-mile delivery drivers"
|
|
29
|
+
compliance_notes: "Forklift operators hold valid UDT certificates. Drivers undergo medical examinations and psychotechnical tests as required by transport regulations. All warehouse workers complete BHP training and manual handling assessments before starting work."
|
|
30
|
+
related_services: "temporary-staffing, permanent-recruitment, outsourcing-rpo, payroll-hr-admin"
|
|
31
|
+
seo:
|
|
32
|
+
title: "Logistics & Transport Staffing — KadoServices"
|
|
33
|
+
description: "Staffing for logistics and transport. Warehouse workers, drivers, supply chain specialists. Rapid scaling for peak seasons, full compliance."
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Poland: Europe's Logistics Hub
|
|
37
|
+
|
|
38
|
+
Poland has become one of Europe's most important logistics markets. Central geographic location, a modern motorway network, and competitive labor costs have attracted major distribution centers from Amazon, DHL, InPost, and dozens of global 3PL providers. The sector employs over 1 million people — and demand continues to outstrip supply.
|
|
39
|
+
|
|
40
|
+
KadoServices is one of Poland's leading staffing partners for the logistics sector. We provide warehouse teams, transport crews, and supply chain professionals to distribution centers, fulfillment operations, and transport companies across the country.
|
|
41
|
+
|
|
42
|
+
## Warehouse Staffing at Scale
|
|
43
|
+
|
|
44
|
+
Our specialty is high-volume warehouse staffing. We maintain a pool of pre-screened warehouse operatives — order pickers, packers, sorters, forklift operators — who are ready to deploy within days. For large distribution centers, we provide on-site coordination with dedicated account managers who handle shift scheduling, attendance management, and real-time replacements.
|
|
45
|
+
|
|
46
|
+
**Peak season capability.** We help retail and e-commerce clients scale from normal operations to 2-3x capacity during Black Friday, Christmas, and holiday periods. Planning starts 8-12 weeks in advance with targeted recruitment campaigns, candidate pre-screening, and staggered onboarding to ensure full readiness on day one.
|
|
47
|
+
|
|
48
|
+
## Professional Drivers
|
|
49
|
+
|
|
50
|
+
Poland faces a chronic shortage of professional truck drivers — an estimated 100,000+ unfilled positions. KadoServices recruits C, C+E, and D category drivers through specialized job boards, CDL training partnerships, and international sourcing channels. Every driver undergoes medical examinations, psychotechnical testing, and background verification before placement.
|
|
51
|
+
|
|
52
|
+
## Supply Chain Professionals
|
|
53
|
+
|
|
54
|
+
Beyond blue-collar roles, we recruit mid-level and senior logistics professionals — supply chain planners, warehouse managers, transport directors, and VP-level operations leaders. These searches combine our recruiter expertise with executive search methodologies to identify candidates with the right mix of operational experience and strategic capability.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-011"
|
|
3
|
+
title: "Manufacturing"
|
|
4
|
+
type: industry
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: manufacturing
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
short_description: "Production workers, engineers, quality specialists, and plant management. Staffing solutions for automotive, electronics, food processing, and heavy industry."
|
|
11
|
+
icon: factory
|
|
12
|
+
workforce_challenges:
|
|
13
|
+
- "Chronic shortage of skilled production workers and CNC operators"
|
|
14
|
+
- "High turnover in shift-based roles — especially among younger workers"
|
|
15
|
+
- "Seasonal production peaks require rapid workforce scaling"
|
|
16
|
+
- "Finding bilingual team leaders for international manufacturing groups"
|
|
17
|
+
- "Aging workforce with limited succession planning"
|
|
18
|
+
- "Strict health and safety certification requirements slow onboarding"
|
|
19
|
+
key_roles:
|
|
20
|
+
- "Production operators & assemblers"
|
|
21
|
+
- "CNC operators & machinists"
|
|
22
|
+
- "Quality control inspectors"
|
|
23
|
+
- "Maintenance technicians & electricians"
|
|
24
|
+
- "Production managers & shift supervisors"
|
|
25
|
+
- "Lean / Six Sigma specialists"
|
|
26
|
+
- "Plant directors & operations managers"
|
|
27
|
+
- "Supply chain & procurement specialists"
|
|
28
|
+
- "EHS (Environment, Health & Safety) managers"
|
|
29
|
+
compliance_notes: "All temporary workers receive mandatory BHP (health & safety) training, medical examinations (medycyna pracy), and site-specific safety inductions before starting work. We verify all required qualifications (SEP, UDT, welding certifications) and maintain complete documentation for labor inspections."
|
|
30
|
+
related_services: "permanent-recruitment, temporary-staffing, outsourcing-rpo"
|
|
31
|
+
seo:
|
|
32
|
+
title: "Manufacturing Staffing Solutions — KadoServices"
|
|
33
|
+
description: "Staffing for manufacturing and automotive. Production workers, engineers, quality specialists. Rapid deployment, full compliance, national coverage."
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## The Manufacturing Workforce Challenge
|
|
37
|
+
|
|
38
|
+
Poland's manufacturing sector employs over 3 million people and accounts for 20% of GDP — but finding qualified workers has never been harder. The combination of record-low unemployment, demographic decline, and competition from Western European employers has created a structural talent shortage that affects every subsector from automotive to food processing.
|
|
39
|
+
|
|
40
|
+
KadoServices has been staffing manufacturing operations across Poland for over 15 years. We understand the unique demands of production environments — shift patterns, safety requirements, physical capability assessments, and the pace at which companies need to scale.
|
|
41
|
+
|
|
42
|
+
## Our Manufacturing Expertise
|
|
43
|
+
|
|
44
|
+
**Automotive.** We staff assembly lines, paint shops, logistics centers, and engineering offices for tier-1 and tier-2 automotive suppliers. Our recruiters specialize in finding CNC operators, welding technicians, quality engineers, and production managers with automotive experience.
|
|
45
|
+
|
|
46
|
+
**Electronics & Technology.** Assembly operators, test technicians, process engineers, and cleanroom staff for electronics manufacturing. We understand ESD requirements and precision assembly standards.
|
|
47
|
+
|
|
48
|
+
**Food & Beverage.** Production workers, machine operators, quality inspectors, and HACCP specialists for food processing plants. All workers hold current sanitary-epidemiological certificates (książeczka sanepidowska).
|
|
49
|
+
|
|
50
|
+
**Heavy Industry & Metalworking.** Welders (MIG/MAG, TIG), fitters, locksmiths, crane operators, and maintenance teams for steel mills, foundries, and metalworking plants. We verify all required certifications (SEP, UDT).
|
|
51
|
+
|
|
52
|
+
## Staffing Models for Manufacturing
|
|
53
|
+
|
|
54
|
+
- **Temporary staffing** — For production peaks, new line launches, and seasonal demand. Workers deployed within 5 business days.
|
|
55
|
+
- **Permanent recruitment** — Production managers, quality engineers, and specialist roles filled through targeted search.
|
|
56
|
+
- **Managed services** — We manage entire production lines or logistics operations, taking responsibility for staffing levels, attendance, and performance.
|
|
57
|
+
- **Employee leasing** — Long-term temporary assignments with option to convert to your permanent headcount.
|
|
58
|
+
|
|
59
|
+
## National Coverage
|
|
60
|
+
|
|
61
|
+
With offices in all major manufacturing regions — Warsaw, Wrocław, Katowice, Poznań, Łódź, and Gdańsk — we have local teams that know the regional labor market, wage expectations, and available talent pool. Our recruiters visit production sites to understand working conditions, shift patterns, and team dynamics before sourcing candidates.
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-013"
|
|
3
|
+
title: "Retail & FMCG"
|
|
4
|
+
type: industry
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: retail
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
short_description: "Store teams, merchandisers, regional managers, and headquarters staff. Staffing solutions for retail chains, FMCG companies, and e-commerce operations."
|
|
11
|
+
icon: store
|
|
12
|
+
workforce_challenges:
|
|
13
|
+
- "High turnover in store-level positions — industry average exceeds 40% annually"
|
|
14
|
+
- "Seasonal hiring spikes for holidays, back-to-school, and promotional campaigns"
|
|
15
|
+
- "Finding experienced store managers and regional directors in competitive markets"
|
|
16
|
+
- "Retail hours and weekend work limit the available candidate pool"
|
|
17
|
+
- "E-commerce growth requires hybrid roles combining digital and physical retail skills"
|
|
18
|
+
- "Multi-location recruitment across 50-500+ stores requires consistent quality and speed"
|
|
19
|
+
key_roles:
|
|
20
|
+
- "Sales assistants & cashiers"
|
|
21
|
+
- "Visual merchandisers & planogram specialists"
|
|
22
|
+
- "Store managers & assistant managers"
|
|
23
|
+
- "Regional managers & area directors"
|
|
24
|
+
- "Category managers & buyers"
|
|
25
|
+
- "E-commerce specialists & marketplace managers"
|
|
26
|
+
- "Customer service representatives"
|
|
27
|
+
- "Marketing managers & brand specialists"
|
|
28
|
+
- "Supply chain & demand planners"
|
|
29
|
+
compliance_notes: "All store staff receive product knowledge training, cash handling procedures, and customer service standards orientation. Workers handling alcohol or tobacco sales are briefed on age verification requirements under Polish law."
|
|
30
|
+
related_services: "temporary-staffing, permanent-recruitment, employer-branding"
|
|
31
|
+
seo:
|
|
32
|
+
title: "Retail & FMCG Staffing Solutions — KadoServices"
|
|
33
|
+
description: "Staffing for retail and FMCG. Store teams, merchandisers, managers. Multi-location hiring, seasonal staffing, 98% fill rate."
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## The Retail Talent Challenge
|
|
37
|
+
|
|
38
|
+
Poland's retail sector generates over PLN 600 billion in annual revenue and employs 2 million+ people. Yet staffing remains one of the industry's biggest operational challenges. Store-level turnover exceeds 40% annually, seasonal peaks demand rapid workforce scaling, and the shift to omnichannel retail requires new skills that are scarce in the labor market.
|
|
39
|
+
|
|
40
|
+
KadoServices has provided retail staffing solutions for over a decade, partnering with national and international retail chains, FMCG companies, and e-commerce platforms. We understand the pace of retail — when you need 200 holiday workers across 40 stores, you need them on time, trained, and ready to sell.
|
|
41
|
+
|
|
42
|
+
## Multi-Location Retail Staffing
|
|
43
|
+
|
|
44
|
+
Our network of 12 offices across Poland enables us to staff retail locations from coast to coast. Whether you're opening a new flagship store in Warsaw, rolling out a seasonal promotion across 100+ locations, or building an e-commerce fulfillment team in a new city, we deliver locally sourced, pre-screened candidates with retail experience.
|
|
45
|
+
|
|
46
|
+
**Seasonal programs.** Our proven seasonal staffing methodology — used by national retail chains during Christmas, Easter, and back-to-school periods — delivers 98% fill rates through advance planning, targeted recruitment campaigns, and batch onboarding processes.
|
|
47
|
+
|
|
48
|
+
**Store openings.** We provide turnkey staffing for new store openings, from initial recruiting and training through the first 90 days of operations. Our team handles everything so your store managers can focus on customers.
|
|
49
|
+
|
|
50
|
+
## From Shop Floor to Headquarters
|
|
51
|
+
|
|
52
|
+
KadoServices recruits across the full retail hierarchy — from sales assistants and cashiers to C-suite executives. Our retail practice has dedicated teams for store-level hiring (high volume, fast turnaround) and headquarters recruitment (category managers, marketing directors, e-commerce leaders) using distinct methodologies suited to each segment.
|
|
53
|
+
|
|
54
|
+
## FMCG & Consumer Goods
|
|
55
|
+
|
|
56
|
+
For FMCG companies, we provide field sales representatives, merchandisers, trade marketing specialists, and key account managers. Our candidates understand the fast-paced FMCG environment — they know how to manage planograms, negotiate shelf space, and drive sell-through in a competitive retail landscape.
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
uuid: "ks-002"
|
|
2
|
+
title: "Strona główna"
|
|
3
|
+
type: landing_page
|
|
4
|
+
status: published
|
|
5
|
+
langcode: pl
|
|
6
|
+
slug: homepage
|
|
7
|
+
date: 2026-03-15
|
|
8
|
+
seo:
|
|
9
|
+
title: "KadoServices — Rekrutacja, HR i rozwiązania kadrowe"
|
|
10
|
+
description: "Wiodąca agencja rekrutacyjna w Polsce. Ponad 15 000 zatrudnień rocznie. Rekrutacja stała, praca tymczasowa, outsourcing, doradztwo HR."
|
|
11
|
+
|
|
12
|
+
sections:
|
|
13
|
+
|
|
14
|
+
# ───────────────────────────────────────────
|
|
15
|
+
# 1. HERO
|
|
16
|
+
# ───────────────────────────────────────────
|
|
17
|
+
- type: hero
|
|
18
|
+
alignment: left
|
|
19
|
+
heading: "Łączymy *firmy* z wyjątkowymi talentami"
|
|
20
|
+
subheading: "Wiodący partner rekrutacyjny w Polsce. Ponad 15 000 zatrudnień rocznie w produkcji, logistyce, IT, finansach i ochronie zdrowia."
|
|
21
|
+
image: "/static/images/hero-bg.jpg"
|
|
22
|
+
cta_text: "Nasze usługi"
|
|
23
|
+
cta_url: "/services/permanent-recruitment"
|
|
24
|
+
cta_secondary_text: "Szukaj pracy"
|
|
25
|
+
cta_secondary_url: "/careers"
|
|
26
|
+
settings:
|
|
27
|
+
background: dark
|
|
28
|
+
spacing: xlarge
|
|
29
|
+
width: wide
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
# ───────────────────────────────────────────
|
|
33
|
+
# 3. USŁUGI
|
|
34
|
+
# ───────────────────────────────────────────
|
|
35
|
+
- type: features
|
|
36
|
+
heading: "Nasze usługi"
|
|
37
|
+
subheading: "Kompleksowe rozwiązania kadrowe i HR dopasowane do potrzeb Twojej firmy."
|
|
38
|
+
columns: "3"
|
|
39
|
+
items:
|
|
40
|
+
- title: "Rekrutacja stała"
|
|
41
|
+
description: "Znajdź odpowiednie talenty na długoterminowy sukces. Od kadry zarządzającej po specjalistów."
|
|
42
|
+
icon: "users"
|
|
43
|
+
url: "/services/permanent-recruitment"
|
|
44
|
+
- title: "Praca tymczasowa"
|
|
45
|
+
description: "Elastyczne rozwiązania kadrowe na szczyty sezonowe i potrzeby projektowe."
|
|
46
|
+
icon: "clock"
|
|
47
|
+
url: "/services/temporary-staffing"
|
|
48
|
+
- title: "Outsourcing i RPO"
|
|
49
|
+
description: "Kompleksowy outsourcing procesów rekrutacyjnych. Stajemy się Twoim działem HR."
|
|
50
|
+
icon: "briefcase"
|
|
51
|
+
url: "/services/outsourcing-rpo"
|
|
52
|
+
- title: "Doradztwo HR"
|
|
53
|
+
description: "Strategiczne planowanie zatrudnienia, benchmarking wynagrodzeń i transformacja HR."
|
|
54
|
+
icon: "brain"
|
|
55
|
+
url: "/services/hr-consulting"
|
|
56
|
+
- title: "Employer Branding"
|
|
57
|
+
description: "Buduj markę pracodawcy, aby przyciągać i zatrzymywać najlepsze talenty na konkurencyjnym rynku."
|
|
58
|
+
icon: "star"
|
|
59
|
+
url: "/services/employer-branding"
|
|
60
|
+
- title: "Kadry i płace"
|
|
61
|
+
description: "Obsługa kadrowo-płacowa, umowy o pracę i pełna administracja HR."
|
|
62
|
+
icon: "file-text"
|
|
63
|
+
url: "/services/payroll-hr-admin"
|
|
64
|
+
settings:
|
|
65
|
+
spacing: large
|
|
66
|
+
|
|
67
|
+
# ───────────────────────────────────────────
|
|
68
|
+
# 4. BRANŻE
|
|
69
|
+
# ───────────────────────────────────────────
|
|
70
|
+
- type: features
|
|
71
|
+
heading: "Branże, które obsługujemy"
|
|
72
|
+
subheading: "Głęboka ekspertyza sektorowa w kluczowych branżach Polski."
|
|
73
|
+
columns: "3"
|
|
74
|
+
items:
|
|
75
|
+
- title: "Produkcja"
|
|
76
|
+
description: "Pracownicy produkcyjni, inżynierowie, specjaliści kontroli jakości."
|
|
77
|
+
icon: "factory"
|
|
78
|
+
url: "/industries/manufacturing"
|
|
79
|
+
- title: "Logistyka i transport"
|
|
80
|
+
description: "Pracownicy magazynowi, kierowcy, specjaliści łańcucha dostaw."
|
|
81
|
+
icon: "truck"
|
|
82
|
+
url: "/industries/logistics"
|
|
83
|
+
- title: "Handel i FMCG"
|
|
84
|
+
description: "Zespoły sklepowe, merchandiserzy, kierownicy regionalni."
|
|
85
|
+
icon: "store"
|
|
86
|
+
url: "/industries/retail"
|
|
87
|
+
- title: "IT i technologie"
|
|
88
|
+
description: "Programiści, administratorzy systemów, kierownicy projektów IT."
|
|
89
|
+
icon: "code"
|
|
90
|
+
url: "/industries/it-technology"
|
|
91
|
+
- title: "Finanse i SSC"
|
|
92
|
+
description: "Księgowi, analitycy finansowi, pracownicy centrów usług wspólnych."
|
|
93
|
+
icon: "landmark"
|
|
94
|
+
url: "/industries/finance-shared-services"
|
|
95
|
+
- title: "Ochrona zdrowia"
|
|
96
|
+
description: "Pielęgniarki, opiekunowie, personel medyczny."
|
|
97
|
+
icon: "heart"
|
|
98
|
+
url: "/industries/healthcare"
|
|
99
|
+
settings:
|
|
100
|
+
spacing: large
|
|
101
|
+
|
|
102
|
+
# ───────────────────────────────────────────
|
|
103
|
+
# 5. LICZBY
|
|
104
|
+
# ───────────────────────────────────────────
|
|
105
|
+
- type: counters
|
|
106
|
+
heading: "KadoServices w liczbach"
|
|
107
|
+
items:
|
|
108
|
+
- number: "15000"
|
|
109
|
+
suffix: "+"
|
|
110
|
+
label: "Zatrudnień rocznie"
|
|
111
|
+
- number: "200"
|
|
112
|
+
suffix: "+"
|
|
113
|
+
label: "Rekruterów"
|
|
114
|
+
- number: "12"
|
|
115
|
+
label: "Biur w Polsce"
|
|
116
|
+
- number: "98"
|
|
117
|
+
suffix: "%"
|
|
118
|
+
label: "Retencja klientów"
|
|
119
|
+
settings:
|
|
120
|
+
background: dark
|
|
121
|
+
spacing: large
|
|
122
|
+
|
|
123
|
+
# ───────────────────────────────────────────
|
|
124
|
+
# 6. KOLUMNY — Wyróżniki
|
|
125
|
+
# ───────────────────────────────────────────
|
|
126
|
+
- type: columns
|
|
127
|
+
layout: "3"
|
|
128
|
+
items:
|
|
129
|
+
- heading: "Szybka realizacja"
|
|
130
|
+
body: "Średni czas obsadzenia stanowiska to **5 dni roboczych** dla ról tymczasowych i **21 dni** dla stanowisk stałych. Nasz wstępnie zweryfikowany talent pool oznacza natychmiastowe dostarczanie kandydatów."
|
|
131
|
+
- heading: "Duża baza kandydatów"
|
|
132
|
+
body: "Dostęp do naszej bazy **120 000+ aktywnych kandydatów** ze wszystkich specjalizacji. Stale odświeżana przez portale pracy, polecenia i sourcing bezpośredni."
|
|
133
|
+
- heading: "Zasięg ogólnopolski"
|
|
134
|
+
body: "**12 biur w całej Polsce** — od Gdańska po Katowice. Lokalne zespoły z głęboką znajomością regionalnych rynków pracy i oczekiwań płacowych."
|
|
135
|
+
settings:
|
|
136
|
+
spacing: large
|
|
137
|
+
|
|
138
|
+
# ───────────────────────────────────────────
|
|
139
|
+
# 7. HISTORIE SUKCESU
|
|
140
|
+
# ───────────────────────────────────────────
|
|
141
|
+
- type: features
|
|
142
|
+
heading: "Historie sukcesu"
|
|
143
|
+
subheading: "Zobacz, jak pomogliśmy firmom budować zwycięskie zespoły."
|
|
144
|
+
columns: "3"
|
|
145
|
+
items:
|
|
146
|
+
- title: "500 zatrudnień w 3 miesiące"
|
|
147
|
+
description: "Rekrutacja masowa dla rozbudowy zakładu motoryzacyjnego. Terminowo i poniżej budżetu."
|
|
148
|
+
icon: "factory"
|
|
149
|
+
url: "/case-studies/manufacturing-mass-recruitment"
|
|
150
|
+
- title: "1200 pracowników sezonowych"
|
|
151
|
+
description: "Obsada świąteczna dla ogólnopolskiej sieci handlowej. 98% wskaźnik obsadzenia w 40 lokalizacjach."
|
|
152
|
+
icon: "store"
|
|
153
|
+
url: "/case-studies/retail-seasonal-staffing"
|
|
154
|
+
- title: "Pełny program RPO"
|
|
155
|
+
description: "Kompleksowy outsourcing rekrutacji dla centrum usług wspólnych. 40% redukcja kosztów."
|
|
156
|
+
icon: "landmark"
|
|
157
|
+
url: "/case-studies/finance-rpo-program"
|
|
158
|
+
settings:
|
|
159
|
+
spacing: large
|
|
160
|
+
|
|
161
|
+
# ───────────────────────────────────────────
|
|
162
|
+
# 8. CTA — Kandydaci
|
|
163
|
+
# ───────────────────────────────────────────
|
|
164
|
+
- type: cta
|
|
165
|
+
heading: "Szukasz nowej pracy?"
|
|
166
|
+
body: "Przeglądaj tysiące ofert pracy w całej Polsce. Zarejestruj swoje CV i pozwól naszym rekruterom dopasować Cię do idealnej okazji."
|
|
167
|
+
button_text: "Zobacz oferty pracy"
|
|
168
|
+
button_url: "/careers"
|
|
169
|
+
secondary_text: "Prześlij swoje CV"
|
|
170
|
+
secondary_url: "/contact"
|
|
171
|
+
settings:
|
|
172
|
+
background: primary
|
|
173
|
+
spacing: large
|
|
174
|
+
|
|
175
|
+
# ───────────────────────────────────────────
|
|
176
|
+
# 9. BLOG
|
|
177
|
+
# ───────────────────────────────────────────
|
|
178
|
+
- type: blog_listing
|
|
179
|
+
heading: "Najnowsze artykuły"
|
|
180
|
+
content_type: article
|
|
181
|
+
limit: 3
|
|
182
|
+
columns: "3"
|
|
183
|
+
settings:
|
|
184
|
+
spacing: large
|
|
185
|
+
|
|
186
|
+
# ───────────────────────────────────────────
|
|
187
|
+
# 10. CTA — Pracodawcy
|
|
188
|
+
# ───────────────────────────────────────────
|
|
189
|
+
- type: cta
|
|
190
|
+
heading: "Gotowy, aby budować swój zespół?"
|
|
191
|
+
body: "Opowiedz nam o swoich potrzebach kadrowych. Nasi konsultanci przygotują spersonalizowaną ofertę w ciągu 24 godzin."
|
|
192
|
+
button_text: "Zamów konsultację"
|
|
193
|
+
button_url: "/contact"
|
|
194
|
+
secondary_text: "Zadzwoń: +48 22 123 4567"
|
|
195
|
+
secondary_url: "tel:+48221234567"
|
|
196
|
+
settings:
|
|
197
|
+
background: dark
|
|
198
|
+
spacing: large
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
uuid: "ks-001"
|
|
2
|
+
title: "Homepage"
|
|
3
|
+
type: landing_page
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: homepage
|
|
7
|
+
date: 2026-03-15
|
|
8
|
+
seo:
|
|
9
|
+
title: "KadoServices — Staffing, HR & Workforce Solutions"
|
|
10
|
+
description: "Poland's leading staffing agency. 15,000+ placements per year. Permanent recruitment, temporary staffing, outsourcing, HR consulting."
|
|
11
|
+
|
|
12
|
+
sections:
|
|
13
|
+
|
|
14
|
+
# ───────────────────────────────────────────
|
|
15
|
+
# 1. HERO
|
|
16
|
+
# ───────────────────────────────────────────
|
|
17
|
+
- type: hero
|
|
18
|
+
alignment: left
|
|
19
|
+
heading: "We connect great companies with *exceptional talent*"
|
|
20
|
+
subheading: "Poland's leading staffing partner. 15,000+ placements per year across manufacturing, logistics, IT, finance, and healthcare."
|
|
21
|
+
image: "/static/images/hero-bg.jpg"
|
|
22
|
+
cta_text: "Our Services"
|
|
23
|
+
cta_url: "/services/permanent-recruitment"
|
|
24
|
+
cta_secondary_text: "Find a Job"
|
|
25
|
+
cta_secondary_url: "/careers"
|
|
26
|
+
settings:
|
|
27
|
+
background: dark
|
|
28
|
+
spacing: xlarge
|
|
29
|
+
width: wide
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
# ───────────────────────────────────────────
|
|
33
|
+
# 3. SERVICES — 6 capabilities
|
|
34
|
+
# ───────────────────────────────────────────
|
|
35
|
+
- type: features
|
|
36
|
+
heading: "Our Services"
|
|
37
|
+
subheading: "Comprehensive staffing and HR solutions tailored to your business needs."
|
|
38
|
+
columns: "3"
|
|
39
|
+
items:
|
|
40
|
+
- title: "Permanent Recruitment"
|
|
41
|
+
description: "Find the right talent for long-term success. From executives to specialists."
|
|
42
|
+
icon: "users"
|
|
43
|
+
url: "/services/permanent-recruitment"
|
|
44
|
+
- title: "Temporary Staffing"
|
|
45
|
+
description: "Flexible workforce solutions for seasonal peaks and project-based needs."
|
|
46
|
+
icon: "clock"
|
|
47
|
+
url: "/services/temporary-staffing"
|
|
48
|
+
- title: "Outsourcing & RPO"
|
|
49
|
+
description: "End-to-end recruitment process outsourcing. We become your HR department."
|
|
50
|
+
icon: "briefcase"
|
|
51
|
+
url: "/services/outsourcing-rpo"
|
|
52
|
+
- title: "HR Consulting"
|
|
53
|
+
description: "Strategic workforce planning, compensation benchmarking, and HR transformation."
|
|
54
|
+
icon: "brain"
|
|
55
|
+
url: "/services/hr-consulting"
|
|
56
|
+
- title: "Employer Branding"
|
|
57
|
+
description: "Build your employer brand to attract and retain top talent in competitive markets."
|
|
58
|
+
icon: "star"
|
|
59
|
+
url: "/services/employer-branding"
|
|
60
|
+
- title: "Payroll & HR Admin"
|
|
61
|
+
description: "Payroll processing, employment contracts, and full HR administration."
|
|
62
|
+
icon: "file-text"
|
|
63
|
+
url: "/services/payroll-hr-admin"
|
|
64
|
+
settings:
|
|
65
|
+
spacing: large
|
|
66
|
+
|
|
67
|
+
# ───────────────────────────────────────────
|
|
68
|
+
# 4. INDUSTRIES — 6 sectors
|
|
69
|
+
# ───────────────────────────────────────────
|
|
70
|
+
- type: features
|
|
71
|
+
heading: "Industries We Serve"
|
|
72
|
+
subheading: "Deep sector expertise across Poland's key industries."
|
|
73
|
+
columns: "3"
|
|
74
|
+
items:
|
|
75
|
+
- title: "Manufacturing"
|
|
76
|
+
description: "Production workers, engineers, quality control specialists."
|
|
77
|
+
icon: "factory"
|
|
78
|
+
url: "/industries/manufacturing"
|
|
79
|
+
- title: "Logistics & Transport"
|
|
80
|
+
description: "Warehouse staff, drivers, supply chain specialists."
|
|
81
|
+
icon: "truck"
|
|
82
|
+
url: "/industries/logistics"
|
|
83
|
+
- title: "Retail & FMCG"
|
|
84
|
+
description: "Store teams, merchandisers, regional managers."
|
|
85
|
+
icon: "store"
|
|
86
|
+
url: "/industries/retail"
|
|
87
|
+
- title: "IT & Technology"
|
|
88
|
+
description: "Developers, system administrators, IT project managers."
|
|
89
|
+
icon: "code"
|
|
90
|
+
url: "/industries/it-technology"
|
|
91
|
+
- title: "Finance & SSC"
|
|
92
|
+
description: "Accountants, financial analysts, shared services staff."
|
|
93
|
+
icon: "landmark"
|
|
94
|
+
url: "/industries/finance-shared-services"
|
|
95
|
+
- title: "Healthcare"
|
|
96
|
+
description: "Nurses, caregivers, medical support staff."
|
|
97
|
+
icon: "heart"
|
|
98
|
+
url: "/industries/healthcare"
|
|
99
|
+
settings:
|
|
100
|
+
spacing: large
|
|
101
|
+
|
|
102
|
+
# ───────────────────────────────────────────
|
|
103
|
+
# 5. COUNTERS — Impact numbers
|
|
104
|
+
# ───────────────────────────────────────────
|
|
105
|
+
- type: counters
|
|
106
|
+
heading: "KadoServices in Numbers"
|
|
107
|
+
items:
|
|
108
|
+
- number: "15000"
|
|
109
|
+
suffix: "+"
|
|
110
|
+
label: "Placements per year"
|
|
111
|
+
- number: "200"
|
|
112
|
+
suffix: "+"
|
|
113
|
+
label: "Recruiters"
|
|
114
|
+
- number: "12"
|
|
115
|
+
label: "Offices in Poland"
|
|
116
|
+
- number: "98"
|
|
117
|
+
suffix: "%"
|
|
118
|
+
label: "Client retention"
|
|
119
|
+
settings:
|
|
120
|
+
background: dark
|
|
121
|
+
spacing: large
|
|
122
|
+
|
|
123
|
+
# ───────────────────────────────────────────
|
|
124
|
+
# 6. COLUMNS — Key differentiators
|
|
125
|
+
# ───────────────────────────────────────────
|
|
126
|
+
- type: columns
|
|
127
|
+
layout: "3"
|
|
128
|
+
items:
|
|
129
|
+
- heading: "Fast Delivery"
|
|
130
|
+
body: "Average time-to-fill of **5 business days** for temporary roles and **21 days** for permanent positions. Our pre-screened talent pool means we start delivering candidates immediately."
|
|
131
|
+
- heading: "Large Talent Pool"
|
|
132
|
+
body: "Access our database of **120,000+ active candidates** across all specializations. Continuously refreshed through job boards, referrals, and direct sourcing."
|
|
133
|
+
- heading: "National Coverage"
|
|
134
|
+
body: "**12 offices across Poland** — from Gdańsk to Katowice. Local teams with deep knowledge of regional labor markets and wage expectations."
|
|
135
|
+
settings:
|
|
136
|
+
spacing: large
|
|
137
|
+
|
|
138
|
+
# ───────────────────────────────────────────
|
|
139
|
+
# 7. SUCCESS STORIES
|
|
140
|
+
# ───────────────────────────────────────────
|
|
141
|
+
- type: features
|
|
142
|
+
heading: "Success Stories"
|
|
143
|
+
subheading: "See how we've helped companies build winning teams."
|
|
144
|
+
columns: "3"
|
|
145
|
+
items:
|
|
146
|
+
- title: "500 Hires in 3 Months"
|
|
147
|
+
description: "Mass recruitment for an automotive plant expansion. Delivered on time, under budget."
|
|
148
|
+
icon: "factory"
|
|
149
|
+
url: "/case-studies/manufacturing-mass-recruitment"
|
|
150
|
+
- title: "1,200 Seasonal Workers"
|
|
151
|
+
description: "Holiday staffing for a national retail chain. 98% fill rate across 40 locations."
|
|
152
|
+
icon: "store"
|
|
153
|
+
url: "/case-studies/retail-seasonal-staffing"
|
|
154
|
+
- title: "Full RPO Program"
|
|
155
|
+
description: "End-to-end recruitment outsourcing for a shared services center. 40% cost reduction."
|
|
156
|
+
icon: "landmark"
|
|
157
|
+
url: "/case-studies/finance-rpo-program"
|
|
158
|
+
settings:
|
|
159
|
+
spacing: large
|
|
160
|
+
|
|
161
|
+
# ───────────────────────────────────────────
|
|
162
|
+
# 8. CTA — Candidates
|
|
163
|
+
# ───────────────────────────────────────────
|
|
164
|
+
- type: cta
|
|
165
|
+
heading: "Looking for your next career move?"
|
|
166
|
+
body: "Browse thousands of job openings across Poland. Register your CV and let our recruiters match you with the perfect opportunity."
|
|
167
|
+
button_text: "View Open Positions"
|
|
168
|
+
button_url: "/careers"
|
|
169
|
+
secondary_text: "Upload Your CV"
|
|
170
|
+
secondary_url: "/contact"
|
|
171
|
+
settings:
|
|
172
|
+
background: primary
|
|
173
|
+
spacing: large
|
|
174
|
+
|
|
175
|
+
# ───────────────────────────────────────────
|
|
176
|
+
# 9. BLOG — Latest insights
|
|
177
|
+
# ───────────────────────────────────────────
|
|
178
|
+
- type: blog_listing
|
|
179
|
+
heading: "Latest Insights"
|
|
180
|
+
content_type: article
|
|
181
|
+
limit: 3
|
|
182
|
+
columns: "3"
|
|
183
|
+
settings:
|
|
184
|
+
spacing: large
|
|
185
|
+
|
|
186
|
+
# ───────────────────────────────────────────
|
|
187
|
+
# 10. CTA — Employers
|
|
188
|
+
# ───────────────────────────────────────────
|
|
189
|
+
- type: cta
|
|
190
|
+
heading: "Ready to build your workforce?"
|
|
191
|
+
body: "Tell us about your staffing needs. Our consultants will prepare a customized proposal within 24 hours."
|
|
192
|
+
button_text: "Request a Consultation"
|
|
193
|
+
button_url: "/contact"
|
|
194
|
+
secondary_text: "Call us: +48 22 123 4567"
|
|
195
|
+
secondary_url: "tel:+48221234567"
|
|
196
|
+
settings:
|
|
197
|
+
background: dark
|
|
198
|
+
spacing: large
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-035"
|
|
3
|
+
title: "Gdańsk"
|
|
4
|
+
type: location
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: gdansk
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
city: "Gdańsk"
|
|
11
|
+
country: "Poland"
|
|
12
|
+
address: "ul. Grunwaldzka 472, 80-309 Gdańsk"
|
|
13
|
+
employee_count: 25
|
|
14
|
+
specializations: "Logistics & Maritime, Manufacturing, Shared Services"
|
|
15
|
+
photo: "https://placehold.co/800x400/14101E/F59E0B?text=Gdansk+Office"
|
|
16
|
+
coordinates:
|
|
17
|
+
lat: 54.3520
|
|
18
|
+
lng: 18.6466
|
|
19
|
+
seo:
|
|
20
|
+
title: "Gdańsk Office — KadoServices"
|
|
21
|
+
description: "KadoServices Gdańsk office. 25 employees specializing in logistics, maritime, manufacturing, and shared services staffing. ul. Grunwaldzka 472."
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
Our Gdańsk office, opened in 2017, serves the Tri-City metropolitan area (Gdańsk, Gdynia, Sopot) and the broader Pomerania region — a unique market combining maritime industry, logistics infrastructure, growing shared services operations, and a vibrant technology sector.
|
|
25
|
+
|
|
26
|
+
Located at ul. Grunwaldzka 472 in the Oliwa business district, the office houses 25 employees covering all of KadoServices' service lines, with particular strength in logistics and maritime staffing, manufacturing recruitment, and the rapidly growing shared services sector in the Tri-City area.
|
|
27
|
+
|
|
28
|
+
The Pomerania region's economic profile is diverse. The Port of Gdańsk and Port of Gdynia are Poland's largest cargo terminals, driving demand for logistics, freight forwarding, and maritime professionals. The Pomeranian Special Economic Zone hosts major manufacturing operations, including electronics (Jabil), automotive (Flex), and energy (wind turbine assembly). And the Tri-City's emergence as a shared services destination — with centers from Bayer, Sitel, and Kemira — has created growing demand for multilingual professionals.
|
|
29
|
+
|
|
30
|
+
Our Gdańsk team has developed particular expertise in recruiting for the maritime and port logistics sector — a niche that requires specialized knowledge of industry certifications, safety requirements, and the unique labor market dynamics of Poland's coastal region. The office handles approximately 1,500 placements per year and maintains an active candidate database of 12,000+ professionals in the Pomerania region.
|
|
31
|
+
|
|
32
|
+
The office also serves as our northern Poland coordination hub for large-scale temporary staffing deployments, managing on-site teams at manufacturing plants and distribution centers across the region.
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-033"
|
|
3
|
+
title: "Kraków"
|
|
4
|
+
type: location
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: krakow
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
city: "Kraków"
|
|
11
|
+
country: "Poland"
|
|
12
|
+
address: "ul. Pawia 5, 31-154 Kraków"
|
|
13
|
+
employee_count: 45
|
|
14
|
+
specializations: "Finance & SSC Recruitment, Multilingual Roles, RPO"
|
|
15
|
+
photo: "https://placehold.co/800x400/14101E/F59E0B?text=Krakow+Office"
|
|
16
|
+
coordinates:
|
|
17
|
+
lat: 50.0647
|
|
18
|
+
lng: 19.9450
|
|
19
|
+
seo:
|
|
20
|
+
title: "Kraków Office — KadoServices"
|
|
21
|
+
description: "KadoServices Kraków office. 45 employees specializing in finance, shared services, and multilingual recruitment. ul. Pawia 5."
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
Our Kraków office, opened in 2013, has become KadoServices' center of excellence for finance and shared services recruitment. Located at ul. Pawia 5 — next to Kraków Główny station and the city's thriving SSC business district — the office houses 45 recruiters and support staff.
|
|
25
|
+
|
|
26
|
+
Kraków is Poland's second-largest city and home to the country's densest concentration of shared services and business process outsourcing centers. Major employers include Shell, ABB, Capgemini, Aon, Heineken, and Philip Morris, alongside dozens of mid-sized SSCs serving European operations. This concentration creates both enormous demand for multilingual finance professionals and intense competition for talent.
|
|
27
|
+
|
|
28
|
+
Our Kraków team specializes in recruiting for SSC environments — AP/AR specialists, GL accountants, financial controllers, and process managers — with a particular focus on candidates with language skills in German, French, Dutch, and Nordic languages. The office operates three of our largest RPO programs, embedding dedicated recruitment teams in client SSC operations.
|
|
29
|
+
|
|
30
|
+
Beyond shared services, the Kraków office serves the region's growing technology sector and the manufacturing operations in the Małopolska and Podkarpacie regions. The office handles approximately 3,500 placements per year and maintains an active candidate database of 25,000+ professionals in the region.
|