@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,120 @@
|
|
|
1
|
+
# German UI translations (stub)
|
|
2
|
+
# Keys use dot-notation: section.key
|
|
3
|
+
|
|
4
|
+
# Navigation
|
|
5
|
+
nav.services: "Dienstleistungen"
|
|
6
|
+
nav.industries: "Branchen"
|
|
7
|
+
nav.case_studies: "Fallstudien"
|
|
8
|
+
nav.insights: "Wissen"
|
|
9
|
+
nav.about: "Über uns"
|
|
10
|
+
nav.careers: "Karriere"
|
|
11
|
+
nav.contact: "Kontakt"
|
|
12
|
+
nav.home: "Startseite"
|
|
13
|
+
nav.view_all_services: "Alle Dienstleistungen"
|
|
14
|
+
nav.view_all_industries: "Alle Branchen"
|
|
15
|
+
|
|
16
|
+
# Dual CTA
|
|
17
|
+
nav.for_employers: "Für Arbeitgeber"
|
|
18
|
+
nav.find_a_job: "Job finden"
|
|
19
|
+
|
|
20
|
+
# Pre-footer
|
|
21
|
+
prefooter.need_to_hire: "Personal gesucht?"
|
|
22
|
+
prefooter.hire_desc: "Erzählen Sie uns von Ihrem Personalbedarf — Kandidaten in wenigen Tagen."
|
|
23
|
+
prefooter.hire_cta: "Jetzt einstellen"
|
|
24
|
+
prefooter.looking_for_work: "Job gesucht?"
|
|
25
|
+
prefooter.jobs_desc: "Durchsuchen Sie offene Stellen und lassen Sie unsere Recruiter Ihre nächste Rolle finden."
|
|
26
|
+
prefooter.jobs_cta: "Jobs durchsuchen"
|
|
27
|
+
|
|
28
|
+
# Language switcher
|
|
29
|
+
lang.label: "Sprache"
|
|
30
|
+
|
|
31
|
+
# Footer
|
|
32
|
+
footer.services: "Dienstleistungen"
|
|
33
|
+
footer.company: "Unternehmen"
|
|
34
|
+
footer.resources: "Ressourcen"
|
|
35
|
+
footer.rights: "Alle Rechte vorbehalten."
|
|
36
|
+
footer.crafted_with: "Talente verbinden mit"
|
|
37
|
+
|
|
38
|
+
# Mega menu — Services
|
|
39
|
+
mega.services.recruitment: "Personalvermittlung"
|
|
40
|
+
mega.services.recruitment_desc: "Top-Talente für Festanstellungen finden"
|
|
41
|
+
mega.services.temporary: "Zeitarbeit"
|
|
42
|
+
mega.services.temporary_desc: "Flexible Personallösungen für Saison- und Projektbedarf"
|
|
43
|
+
mega.services.outsourcing: "Outsourcing & RPO"
|
|
44
|
+
mega.services.outsourcing_desc: "End-to-End Recruitment Process Outsourcing"
|
|
45
|
+
mega.services.consulting: "HR-Beratung"
|
|
46
|
+
mega.services.consulting_desc: "Strategische Personalplanung & HR-Transformation"
|
|
47
|
+
mega.services.branding: "Employer Branding"
|
|
48
|
+
mega.services.branding_desc: "Arbeitgebermarke aufbauen, um Top-Kandidaten zu gewinnen"
|
|
49
|
+
mega.services.payroll: "Lohnabrechnung & HR-Admin"
|
|
50
|
+
mega.services.payroll_desc: "Gehaltsabrechnung, Verträge & HR-Administration"
|
|
51
|
+
|
|
52
|
+
# Mega menu — Industries
|
|
53
|
+
mega.industries.manufacturing: "Fertigung"
|
|
54
|
+
mega.industries.manufacturing_desc: "Produktionsmitarbeiter, Ingenieure & Qualitätskontrolle"
|
|
55
|
+
mega.industries.logistics: "Logistik & Transport"
|
|
56
|
+
mega.industries.logistics_desc: "Lager, Fahrer & Supply-Chain-Spezialisten"
|
|
57
|
+
mega.industries.retail: "Handel & FMCG"
|
|
58
|
+
mega.industries.retail_desc: "Filialteams, Merchandiser & Regionalleiter"
|
|
59
|
+
mega.industries.it: "IT & Technologie"
|
|
60
|
+
mega.industries.it_desc: "Entwickler, Admins & IT-Projektmanager"
|
|
61
|
+
mega.industries.finance: "Finanzen & SSC"
|
|
62
|
+
mega.industries.finance_desc: "Buchhalter, Analysten & Shared-Services-Personal"
|
|
63
|
+
mega.industries.healthcare: "Gesundheitswesen"
|
|
64
|
+
mega.industries.healthcare_desc: "Pflegepersonal, Betreuer & medizinische Fachkräfte"
|
|
65
|
+
|
|
66
|
+
# Mega menu — Insights
|
|
67
|
+
mega.insights.blog: "Blog"
|
|
68
|
+
mega.insights.ebooks: "Berichte"
|
|
69
|
+
mega.insights.webinars: "Webinare"
|
|
70
|
+
mega.insights.tools: "Gehaltsreports"
|
|
71
|
+
mega.insights.demo: "Demo"
|
|
72
|
+
mega.insights.talks: "Veranstaltungen"
|
|
73
|
+
mega.insights.opensource: "Ressourcen"
|
|
74
|
+
|
|
75
|
+
# Footer links
|
|
76
|
+
footer.recruitment: "Personalvermittlung"
|
|
77
|
+
footer.temporary_staffing: "Zeitarbeit"
|
|
78
|
+
footer.outsourcing: "Outsourcing & RPO"
|
|
79
|
+
footer.hr_consulting: "HR-Beratung"
|
|
80
|
+
footer.employer_branding: "Employer Branding"
|
|
81
|
+
footer.payroll: "Lohnabrechnung & HR-Admin"
|
|
82
|
+
footer.about_us: "Über uns"
|
|
83
|
+
footer.leadership: "Führungsteam"
|
|
84
|
+
footer.careers: "Karriere"
|
|
85
|
+
footer.locations: "Standorte"
|
|
86
|
+
footer.contact: "Kontakt"
|
|
87
|
+
footer.blog: "Blog"
|
|
88
|
+
footer.case_studies: "Fallstudien"
|
|
89
|
+
footer.salary_guides: "Gehaltsreports"
|
|
90
|
+
footer.webinars: "Webinare"
|
|
91
|
+
|
|
92
|
+
blog.view_all: "Alle Artikel ansehen"
|
|
93
|
+
|
|
94
|
+
# Common UI
|
|
95
|
+
ui.read_more: "Weiterlesen"
|
|
96
|
+
ui.back: "Zurück"
|
|
97
|
+
ui.search: "Suche"
|
|
98
|
+
ui.loading: "Wird geladen..."
|
|
99
|
+
ui.page_not_found: "Seite nicht gefunden"
|
|
100
|
+
ui.page_not_found_desc: "Die gesuchte Seite existiert nicht oder wurde verschoben."
|
|
101
|
+
ui.go_home: "Zur Startseite"
|
|
102
|
+
|
|
103
|
+
# Services page
|
|
104
|
+
services.hero_label: "Unsere Leistungen"
|
|
105
|
+
services.stats_areas: "Servicebereiche"
|
|
106
|
+
services.stats_recruiters: "Recruiter"
|
|
107
|
+
services.stats_placements: "Vermittlungen / Jahr"
|
|
108
|
+
services.stats_offices: "Büros in Polen"
|
|
109
|
+
services.core_capability: "Kernkompetenz"
|
|
110
|
+
services.all_services: "Alle Dienstleistungen"
|
|
111
|
+
services.how_we_work: "Wie wir arbeiten"
|
|
112
|
+
services.lets_talk: "Sprechen wir"
|
|
113
|
+
|
|
114
|
+
# Mobile nav
|
|
115
|
+
mobile.home: "Start"
|
|
116
|
+
mobile.services: "Leistungen"
|
|
117
|
+
mobile.case_studies: "Fallstudien"
|
|
118
|
+
mobile.articles: "Wissen"
|
|
119
|
+
mobile.about: "Über uns"
|
|
120
|
+
mobile.contact: "Kontakt"
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# English UI translations (source language)
|
|
2
|
+
# Keys use dot-notation: section.key
|
|
3
|
+
|
|
4
|
+
# Navigation
|
|
5
|
+
nav.services: "Services"
|
|
6
|
+
nav.industries: "Industries"
|
|
7
|
+
nav.case_studies: "Case Studies"
|
|
8
|
+
nav.insights: "Insights"
|
|
9
|
+
nav.about: "About"
|
|
10
|
+
nav.careers: "Careers"
|
|
11
|
+
nav.contact: "Contact Us"
|
|
12
|
+
nav.home: "Home"
|
|
13
|
+
nav.view_all_services: "View all services"
|
|
14
|
+
nav.view_all_industries: "View all industries"
|
|
15
|
+
|
|
16
|
+
# Dual CTA
|
|
17
|
+
nav.for_employers: "For Employers"
|
|
18
|
+
nav.find_a_job: "Find a Job"
|
|
19
|
+
|
|
20
|
+
# Pre-footer
|
|
21
|
+
prefooter.need_to_hire: "Need to hire?"
|
|
22
|
+
prefooter.hire_desc: "Tell us about your staffing needs and get candidates within days."
|
|
23
|
+
prefooter.hire_cta: "Start Hiring"
|
|
24
|
+
prefooter.looking_for_work: "Looking for work?"
|
|
25
|
+
prefooter.jobs_desc: "Browse open positions and let our recruiters find your next role."
|
|
26
|
+
prefooter.jobs_cta: "Browse Jobs"
|
|
27
|
+
|
|
28
|
+
# Language switcher
|
|
29
|
+
lang.label: "Language"
|
|
30
|
+
|
|
31
|
+
# Footer
|
|
32
|
+
footer.services: "Services"
|
|
33
|
+
footer.company: "Company"
|
|
34
|
+
footer.resources: "Resources"
|
|
35
|
+
footer.rights: "All rights reserved."
|
|
36
|
+
footer.crafted_with: "Connecting talent with"
|
|
37
|
+
|
|
38
|
+
# Mega menu — Services
|
|
39
|
+
mega.services.recruitment: "Permanent Recruitment"
|
|
40
|
+
mega.services.recruitment_desc: "Find and hire top talent for permanent roles"
|
|
41
|
+
mega.services.temporary: "Temporary Staffing"
|
|
42
|
+
mega.services.temporary_desc: "Flexible workforce solutions for seasonal & project needs"
|
|
43
|
+
mega.services.outsourcing: "Outsourcing & RPO"
|
|
44
|
+
mega.services.outsourcing_desc: "End-to-end recruitment process outsourcing"
|
|
45
|
+
mega.services.consulting: "HR Consulting"
|
|
46
|
+
mega.services.consulting_desc: "Strategic workforce planning & HR transformation"
|
|
47
|
+
mega.services.branding: "Employer Branding"
|
|
48
|
+
mega.services.branding_desc: "Build your employer brand to attract top candidates"
|
|
49
|
+
mega.services.payroll: "Payroll & HR Admin"
|
|
50
|
+
mega.services.payroll_desc: "Payroll processing, contracts & HR administration"
|
|
51
|
+
|
|
52
|
+
# Mega menu — Industries
|
|
53
|
+
mega.industries.manufacturing: "Manufacturing"
|
|
54
|
+
mega.industries.manufacturing_desc: "Production staff, engineers & quality control"
|
|
55
|
+
mega.industries.logistics: "Logistics & Transport"
|
|
56
|
+
mega.industries.logistics_desc: "Warehouse, drivers & supply chain specialists"
|
|
57
|
+
mega.industries.retail: "Retail & FMCG"
|
|
58
|
+
mega.industries.retail_desc: "Store teams, merchandisers & regional managers"
|
|
59
|
+
mega.industries.it: "IT & Technology"
|
|
60
|
+
mega.industries.it_desc: "Developers, admins & IT project managers"
|
|
61
|
+
mega.industries.finance: "Finance & SSC"
|
|
62
|
+
mega.industries.finance_desc: "Accounting, analysts & shared services staff"
|
|
63
|
+
mega.industries.healthcare: "Healthcare"
|
|
64
|
+
mega.industries.healthcare_desc: "Nurses, caregivers & medical support staff"
|
|
65
|
+
|
|
66
|
+
# Mega menu — Insights
|
|
67
|
+
mega.insights.blog: "Blog"
|
|
68
|
+
mega.insights.ebooks: "Reports"
|
|
69
|
+
mega.insights.webinars: "Webinars"
|
|
70
|
+
mega.insights.tools: "Salary Guides"
|
|
71
|
+
mega.insights.demo: "Demo"
|
|
72
|
+
mega.insights.talks: "Events"
|
|
73
|
+
mega.insights.opensource: "Resources"
|
|
74
|
+
|
|
75
|
+
# Footer links
|
|
76
|
+
footer.recruitment: "Permanent Recruitment"
|
|
77
|
+
footer.temporary_staffing: "Temporary Staffing"
|
|
78
|
+
footer.outsourcing: "Outsourcing & RPO"
|
|
79
|
+
footer.hr_consulting: "HR Consulting"
|
|
80
|
+
footer.employer_branding: "Employer Branding"
|
|
81
|
+
footer.payroll: "Payroll & HR Admin"
|
|
82
|
+
footer.about_us: "About Us"
|
|
83
|
+
footer.leadership: "Leadership"
|
|
84
|
+
footer.careers: "Careers"
|
|
85
|
+
footer.locations: "Locations"
|
|
86
|
+
footer.contact: "Contact"
|
|
87
|
+
footer.blog: "Blog"
|
|
88
|
+
footer.case_studies: "Case Studies"
|
|
89
|
+
footer.salary_guides: "Salary Guides"
|
|
90
|
+
footer.webinars: "Webinars"
|
|
91
|
+
|
|
92
|
+
blog.view_all: "View all insights"
|
|
93
|
+
|
|
94
|
+
# Common UI
|
|
95
|
+
ui.read_more: "Read more"
|
|
96
|
+
ui.back: "Back"
|
|
97
|
+
ui.search: "Search"
|
|
98
|
+
ui.loading: "Loading..."
|
|
99
|
+
ui.page_not_found: "Page not found"
|
|
100
|
+
ui.page_not_found_desc: "The page you're looking for doesn't exist or has been moved."
|
|
101
|
+
ui.go_home: "Go to homepage"
|
|
102
|
+
|
|
103
|
+
# Services page
|
|
104
|
+
services.hero_label: "What We Do"
|
|
105
|
+
services.stats_areas: "Service Areas"
|
|
106
|
+
services.stats_recruiters: "Recruiters"
|
|
107
|
+
services.stats_placements: "Placements / Year"
|
|
108
|
+
services.stats_offices: "Offices in Poland"
|
|
109
|
+
services.core_capability: "Core Capability"
|
|
110
|
+
services.all_services: "All Services"
|
|
111
|
+
services.how_we_work: "How We Work"
|
|
112
|
+
services.lets_talk: "Let's Talk"
|
|
113
|
+
|
|
114
|
+
# Mobile nav
|
|
115
|
+
mobile.home: "Home"
|
|
116
|
+
mobile.services: "Services"
|
|
117
|
+
mobile.case_studies: "Case Studies"
|
|
118
|
+
mobile.articles: "Insights"
|
|
119
|
+
mobile.about: "About"
|
|
120
|
+
mobile.contact: "Contact"
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# Polish UI translations
|
|
2
|
+
# Keys use dot-notation: section.key
|
|
3
|
+
|
|
4
|
+
# Navigation
|
|
5
|
+
nav.services: "Usługi"
|
|
6
|
+
nav.industries: "Branże"
|
|
7
|
+
nav.case_studies: "Case Studies"
|
|
8
|
+
nav.insights: "Wiedza"
|
|
9
|
+
nav.about: "O nas"
|
|
10
|
+
nav.careers: "Kariera"
|
|
11
|
+
nav.contact: "Kontakt"
|
|
12
|
+
nav.home: "Strona główna"
|
|
13
|
+
nav.view_all_services: "Wszystkie usługi"
|
|
14
|
+
nav.view_all_industries: "Wszystkie branże"
|
|
15
|
+
|
|
16
|
+
# Dual CTA
|
|
17
|
+
nav.for_employers: "Dla pracodawców"
|
|
18
|
+
nav.find_a_job: "Szukaj pracy"
|
|
19
|
+
|
|
20
|
+
# Pre-footer
|
|
21
|
+
prefooter.need_to_hire: "Szukasz pracowników?"
|
|
22
|
+
prefooter.hire_desc: "Powiedz nam o swoich potrzebach kadrowych — kandydaci w kilka dni."
|
|
23
|
+
prefooter.hire_cta: "Zacznij rekrutację"
|
|
24
|
+
prefooter.looking_for_work: "Szukasz pracy?"
|
|
25
|
+
prefooter.jobs_desc: "Przeglądaj oferty i pozwól naszym rekruterom znaleźć Twoją następną rolę."
|
|
26
|
+
prefooter.jobs_cta: "Przeglądaj oferty"
|
|
27
|
+
|
|
28
|
+
# Language switcher
|
|
29
|
+
lang.label: "Język"
|
|
30
|
+
|
|
31
|
+
# Footer
|
|
32
|
+
footer.services: "Usługi"
|
|
33
|
+
footer.company: "Firma"
|
|
34
|
+
footer.resources: "Zasoby"
|
|
35
|
+
footer.rights: "Wszelkie prawa zastrzeżone."
|
|
36
|
+
footer.crafted_with: "Łączymy talenty z"
|
|
37
|
+
|
|
38
|
+
# Mega menu — Services
|
|
39
|
+
mega.services.recruitment: "Rekrutacja stała"
|
|
40
|
+
mega.services.recruitment_desc: "Znajdź i zatrudnij najlepszych kandydatów na stałe"
|
|
41
|
+
mega.services.temporary: "Praca tymczasowa"
|
|
42
|
+
mega.services.temporary_desc: "Elastyczne rozwiązania kadrowe na projekty i sezony"
|
|
43
|
+
mega.services.outsourcing: "Outsourcing i RPO"
|
|
44
|
+
mega.services.outsourcing_desc: "Kompleksowy outsourcing procesów rekrutacyjnych"
|
|
45
|
+
mega.services.consulting: "Doradztwo HR"
|
|
46
|
+
mega.services.consulting_desc: "Strategiczne planowanie kadr i transformacja HR"
|
|
47
|
+
mega.services.branding: "Employer Branding"
|
|
48
|
+
mega.services.branding_desc: "Buduj markę pracodawcy, aby przyciągać talenty"
|
|
49
|
+
mega.services.payroll: "Kadry i płace"
|
|
50
|
+
mega.services.payroll_desc: "Naliczanie wynagrodzeń, umowy i administracja HR"
|
|
51
|
+
|
|
52
|
+
# Mega menu — Industries
|
|
53
|
+
mega.industries.manufacturing: "Produkcja"
|
|
54
|
+
mega.industries.manufacturing_desc: "Pracownicy produkcji, inżynierowie i kontrola jakości"
|
|
55
|
+
mega.industries.logistics: "Logistyka i transport"
|
|
56
|
+
mega.industries.logistics_desc: "Magazynierzy, kierowcy i specjaliści łańcucha dostaw"
|
|
57
|
+
mega.industries.retail: "Handel i FMCG"
|
|
58
|
+
mega.industries.retail_desc: "Zespoły sklepowe, merchandiserzy i kierownicy regionalni"
|
|
59
|
+
mega.industries.it: "IT i technologie"
|
|
60
|
+
mega.industries.it_desc: "Programiści, administratorzy i PM-owie IT"
|
|
61
|
+
mega.industries.finance: "Finanse i SSC"
|
|
62
|
+
mega.industries.finance_desc: "Księgowi, analitycy i kadry centrów usług wspólnych"
|
|
63
|
+
mega.industries.healthcare: "Ochrona zdrowia"
|
|
64
|
+
mega.industries.healthcare_desc: "Pielęgniarki, opiekunowie i personel medyczny"
|
|
65
|
+
|
|
66
|
+
# Mega menu — Insights
|
|
67
|
+
mega.insights.blog: "Blog"
|
|
68
|
+
mega.insights.ebooks: "Raporty"
|
|
69
|
+
mega.insights.webinars: "Webinary"
|
|
70
|
+
mega.insights.tools: "Raporty płacowe"
|
|
71
|
+
mega.insights.demo: "Demo"
|
|
72
|
+
mega.insights.talks: "Wydarzenia"
|
|
73
|
+
mega.insights.opensource: "Zasoby"
|
|
74
|
+
|
|
75
|
+
# Footer links
|
|
76
|
+
footer.recruitment: "Rekrutacja stała"
|
|
77
|
+
footer.temporary_staffing: "Praca tymczasowa"
|
|
78
|
+
footer.outsourcing: "Outsourcing i RPO"
|
|
79
|
+
footer.hr_consulting: "Doradztwo HR"
|
|
80
|
+
footer.employer_branding: "Employer Branding"
|
|
81
|
+
footer.payroll: "Kadry i płace"
|
|
82
|
+
footer.about_us: "O nas"
|
|
83
|
+
footer.leadership: "Zarząd"
|
|
84
|
+
footer.careers: "Kariera"
|
|
85
|
+
footer.locations: "Lokalizacje"
|
|
86
|
+
footer.contact: "Kontakt"
|
|
87
|
+
footer.blog: "Blog"
|
|
88
|
+
footer.case_studies: "Case Studies"
|
|
89
|
+
footer.salary_guides: "Raporty płacowe"
|
|
90
|
+
footer.webinars: "Webinary"
|
|
91
|
+
|
|
92
|
+
blog.view_all: "Zobacz wszystkie artykuły"
|
|
93
|
+
|
|
94
|
+
# Common UI
|
|
95
|
+
ui.read_more: "Czytaj więcej"
|
|
96
|
+
ui.back: "Wróć"
|
|
97
|
+
ui.search: "Szukaj"
|
|
98
|
+
ui.loading: "Ładowanie..."
|
|
99
|
+
ui.page_not_found: "Nie znaleziono strony"
|
|
100
|
+
ui.page_not_found_desc: "Strona, której szukasz, nie istnieje lub została przeniesiona."
|
|
101
|
+
ui.go_home: "Przejdź na stronę główną"
|
|
102
|
+
|
|
103
|
+
# Services page
|
|
104
|
+
services.hero_label: "Nasze usługi"
|
|
105
|
+
services.stats_areas: "Obszary usług"
|
|
106
|
+
services.stats_recruiters: "Rekruterów"
|
|
107
|
+
services.stats_placements: "Rekrutacji / rok"
|
|
108
|
+
services.stats_offices: "Biura w Polsce"
|
|
109
|
+
services.core_capability: "Kluczowa kompetencja"
|
|
110
|
+
services.all_services: "Wszystkie usługi"
|
|
111
|
+
services.how_we_work: "Jak pracujemy"
|
|
112
|
+
services.lets_talk: "Porozmawiajmy"
|
|
113
|
+
|
|
114
|
+
# Mobile nav
|
|
115
|
+
mobile.home: "Start"
|
|
116
|
+
mobile.services: "Usługi"
|
|
117
|
+
mobile.case_studies: "Case Studies"
|
|
118
|
+
mobile.articles: "Wiedza"
|
|
119
|
+
mobile.about: "O nas"
|
|
120
|
+
mobile.contact: "Kontakt"
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-025"
|
|
3
|
+
title: "5 Employer Branding Strategies That Actually Work"
|
|
4
|
+
type: article
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: employer-branding-strategies
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
category: "Employer Branding"
|
|
11
|
+
tags:
|
|
12
|
+
- employer-branding
|
|
13
|
+
- talent-acquisition
|
|
14
|
+
- recruitment-marketing
|
|
15
|
+
- retention
|
|
16
|
+
author: "Maria Wisniewska"
|
|
17
|
+
author_role: "VP Recruitment"
|
|
18
|
+
author_image: "https://placehold.co/100x100/14101E/F59E0B?text=MW"
|
|
19
|
+
featured_image: "https://placehold.co/800x400/14101E/F59E0B?text=Employer+Branding"
|
|
20
|
+
excerpt: "Forget stock photos and corporate buzzwords. Here are five employer branding strategies that actually move the needle on candidate quality and hiring speed."
|
|
21
|
+
reading_time: "6 min"
|
|
22
|
+
seo:
|
|
23
|
+
title: "5 Employer Branding Strategies That Work — KadoServices Insights"
|
|
24
|
+
description: "Practical employer branding strategies for Polish companies. Employee advocacy, salary transparency, authentic content, and measurable results."
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
Every year, companies spend millions on recruitment advertising — job board placements, career fairs, LinkedIn campaigns — while neglecting the one asset that influences candidate decisions more than anything else: their employer brand. Research from LinkedIn shows that companies with strong employer brands see 50% more qualified applicants, pay 10% less per hire, and reduce turnover by 28%.
|
|
28
|
+
|
|
29
|
+
Yet most employer branding efforts in Poland remain superficial. Stock photos of smiling teams, generic "we're a family" messaging, and career pages that haven't been updated since 2019. Candidates see through it instantly.
|
|
30
|
+
|
|
31
|
+
Here are five strategies that actually work — based on our experience helping 45+ companies build employer brands that attract talent.
|
|
32
|
+
|
|
33
|
+
## 1. Let Your Employees Tell the Story
|
|
34
|
+
|
|
35
|
+
The most credible employer brand content comes from your employees, not your marketing department. When a software developer at your company posts about a challenging project they solved, or a warehouse manager shares what their typical day looks like, candidates trust it far more than any corporate campaign.
|
|
36
|
+
|
|
37
|
+
**How to implement:** Create a simple employee advocacy program. Provide willing employees with content prompts (not scripts), basic social media training, and encouragement. Feature their stories on your career page, LinkedIn, and internal channels. The content doesn't need to be polished — authenticity is the point.
|
|
38
|
+
|
|
39
|
+
## 2. Be Transparent About Compensation
|
|
40
|
+
|
|
41
|
+
Poland's labor market is moving rapidly toward salary transparency. Candidates increasingly expect — and demand — salary information before applying. Companies that publish salary ranges in job ads see 30-40% more applications and significantly shorter time-to-fill.
|
|
42
|
+
|
|
43
|
+
**How to implement:** Publish salary ranges in every job posting. Yes, this requires clean compensation structures and may expose internal inconsistencies. That's a feature, not a bug — it forces you to fix pay equity issues that would eventually surface anyway.
|
|
44
|
+
|
|
45
|
+
## 3. Show the Real Culture, Not the Aspirational One
|
|
46
|
+
|
|
47
|
+
The fastest way to destroy your employer brand is to oversell your culture. When new hires discover that the "innovative startup culture" is actually a rigid corporate environment, or that "work-life balance" means "unlimited unpaid overtime," they leave — and they leave negative Glassdoor reviews on the way out.
|
|
48
|
+
|
|
49
|
+
**How to implement:** Be honest about your culture, including the challenges. "We're a fast-growing company which means things change quickly and ambiguity is part of the job" is more credible — and more attractive to the right candidates — than "we're a dynamic, innovative workplace."
|
|
50
|
+
|
|
51
|
+
## 4. Invest in the Candidate Experience
|
|
52
|
+
|
|
53
|
+
Your employer brand is shaped not just by marketing but by every interaction a candidate has with your company. A slow, disrespectful recruitment process damages your brand more than any campaign can repair. In Poland's competitive market, top candidates withdraw from processes that take too long or lack communication.
|
|
54
|
+
|
|
55
|
+
**How to implement:** Map your candidate journey and eliminate friction. Respond to applications within 48 hours. Keep candidates informed at every stage. Provide feedback after interviews — even rejections. Measure candidate NPS and treat it as seriously as customer NPS.
|
|
56
|
+
|
|
57
|
+
## 5. Leverage Your Alumni Network
|
|
58
|
+
|
|
59
|
+
Former employees are one of your most powerful — and most overlooked — employer branding assets. When ex-employees speak positively about their experience at your company, it carries enormous credibility. Some may even return as "boomerang" hires, bringing back external experience and an instant cultural fit.
|
|
60
|
+
|
|
61
|
+
**How to implement:** Create a lightweight alumni program — a LinkedIn group, an annual event, a quarterly newsletter. Stay in touch with former employees. Celebrate their achievements after they leave. The investment is minimal; the employer brand impact is significant.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-021"
|
|
3
|
+
title: "Hiring Trends in Poland: What to Expect in 2026"
|
|
4
|
+
type: article
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: hiring-trends-2026
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
category: "Hiring Trends"
|
|
11
|
+
tags:
|
|
12
|
+
- hiring-trends
|
|
13
|
+
- labor-market
|
|
14
|
+
- poland
|
|
15
|
+
- workforce-planning
|
|
16
|
+
author: "Anna Kowalska"
|
|
17
|
+
author_role: "CEO"
|
|
18
|
+
author_image: "https://placehold.co/100x100/14101E/F59E0B?text=AK"
|
|
19
|
+
featured_image: "https://placehold.co/800x400/14101E/F59E0B?text=Hiring+Trends+2026"
|
|
20
|
+
excerpt: "Poland's labor market in 2026 is defined by structural talent shortages, rising expectations, and the accelerating impact of AI on workforce composition."
|
|
21
|
+
reading_time: "8 min"
|
|
22
|
+
seo:
|
|
23
|
+
title: "Hiring Trends in Poland 2026 — KadoServices Insights"
|
|
24
|
+
description: "Key hiring trends shaping Poland's labor market in 2026. Talent shortages, salary expectations, remote work, AI impact, and what employers should do."
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
Poland's labor market in 2026 is shaped by forces that were building for years but have now converged into a new reality. Record-low unemployment, demographic decline, shifting employee expectations, and the accelerating adoption of AI are redefining how companies attract, hire, and retain talent. For employers, understanding these trends isn't optional — it's the difference between building competitive teams and watching your best people leave for companies that adapted faster.
|
|
28
|
+
|
|
29
|
+
## 1. The Talent Shortage Is Structural, Not Cyclical
|
|
30
|
+
|
|
31
|
+
Poland's unemployment rate sits at 2.8% — effectively full employment. But this headline figure masks a deeper problem: the working-age population has been shrinking since 2015 and will continue to decline by 100,000-150,000 people per year through 2035. Immigration — primarily from Ukraine, Belarus, and Central Asia — partially offsets the demographic decline but doesn't fully close the gap, especially for skilled and specialized roles.
|
|
32
|
+
|
|
33
|
+
For employers, this means the hiring competition for qualified workers will intensify every year regardless of economic cycles. Companies that relied on posting job ads and waiting for applications need to fundamentally rethink their talent acquisition strategy.
|
|
34
|
+
|
|
35
|
+
## 2. Salary Expectations Continue to Rise
|
|
36
|
+
|
|
37
|
+
Average wages in Poland grew by 12% in 2025, outpacing inflation for the third consecutive year. In sectors like IT, finance, and engineering, growth exceeded 15%. The minimum wage has doubled in five years, compressing differentials and forcing mid-market employers to restructure compensation bands.
|
|
38
|
+
|
|
39
|
+
The implication is clear: compensation packages that were competitive 12 months ago may already be below market. Regular salary benchmarking — at least annually, ideally quarterly for high-demand roles — is essential.
|
|
40
|
+
|
|
41
|
+
## 3. Remote and Hybrid Work Are Non-Negotiable
|
|
42
|
+
|
|
43
|
+
The post-pandemic return-to-office push has largely failed in Poland's white-collar sectors. Over 60% of knowledge workers expect at least 2-3 days of remote work per week, and companies that mandate full-time office presence report significantly higher turnover and longer time-to-fill for open positions.
|
|
44
|
+
|
|
45
|
+
The hybrid model has also expanded the competitive landscape. A developer in Rzeszów now competes for the same roles as one in Warsaw — and can be recruited by employers in Berlin, London, or San Francisco without relocating.
|
|
46
|
+
|
|
47
|
+
## 4. AI Is Reshaping Workforce Composition
|
|
48
|
+
|
|
49
|
+
Generative AI is not replacing entire job categories — yet. But it is changing what employers need from their workforce. Demand for AI-literate professionals (prompt engineers, AI product managers, data annotation specialists) has surged, while routine administrative and data-entry roles are being automated or consolidated.
|
|
50
|
+
|
|
51
|
+
Forward-thinking employers are investing in upskilling programs that help existing employees work alongside AI tools rather than be displaced by them. This approach reduces hiring costs and improves retention.
|
|
52
|
+
|
|
53
|
+
## 5. Employer Branding Is the New Differentiator
|
|
54
|
+
|
|
55
|
+
In a market where top candidates choose employers rather than the other way around, employer brand has become the most important factor in recruitment success. Companies with strong, authentic employer brands report 50% more qualified applicants, 28% lower turnover, and significantly shorter time-to-fill.
|
|
56
|
+
|
|
57
|
+
The companies winning the employer branding race aren't those spending the most — they're those being the most authentic. Employee-generated content, transparent salary ranges, genuine culture showcases, and honest Glassdoor responses outperform polished corporate campaigns.
|
|
58
|
+
|
|
59
|
+
## What Employers Should Do Now
|
|
60
|
+
|
|
61
|
+
The trends above point to a clear action plan: benchmark salaries quarterly, invest in employer branding, offer genuine flexibility, upskill your workforce for AI, and build recruitment processes that treat candidates like customers. The companies that adapt will build the teams that drive growth. Those that don't will spend increasingly more money to fill positions with increasingly less qualified candidates.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-022"
|
|
3
|
+
title: "Trendy rekrutacyjne w Polsce: czego oczekiwać w 2026"
|
|
4
|
+
type: article
|
|
5
|
+
status: published
|
|
6
|
+
langcode: pl
|
|
7
|
+
slug: hiring-trends-2026
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
category: "Trendy rekrutacyjne"
|
|
11
|
+
tags:
|
|
12
|
+
- trendy-rekrutacyjne
|
|
13
|
+
- rynek-pracy
|
|
14
|
+
- polska
|
|
15
|
+
- planowanie-zatrudnienia
|
|
16
|
+
author: "Anna Kowalska"
|
|
17
|
+
author_role: "CEO"
|
|
18
|
+
author_image: "https://placehold.co/100x100/14101E/F59E0B?text=AK"
|
|
19
|
+
featured_image: "https://placehold.co/800x400/14101E/F59E0B?text=Trendy+Rekrutacyjne+2026"
|
|
20
|
+
excerpt: "Polski rynek pracy w 2026 roku definiują strukturalne niedobory talentów, rosnące oczekiwania i przyspieszający wpływ AI na skład siły roboczej."
|
|
21
|
+
reading_time: "8 min"
|
|
22
|
+
seo:
|
|
23
|
+
title: "Trendy rekrutacyjne w Polsce 2026 — KadoServices"
|
|
24
|
+
description: "Kluczowe trendy kształtujące polski rynek pracy w 2026. Niedobory talentów, oczekiwania płacowe, praca zdalna, wpływ AI i co pracodawcy powinni zrobić."
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
Polski rynek pracy w 2026 roku kształtują siły, które narastały od lat, ale teraz zbiegły się w nową rzeczywistość. Rekordowo niskie bezrobocie, spadek demograficzny, zmieniające się oczekiwania pracowników i przyspieszająca adopcja AI redefiniują sposób, w jaki firmy przyciągają, zatrudniają i zatrzymują talenty. Dla pracodawców zrozumienie tych trendów nie jest opcjonalne — to różnica między budowaniem konkurencyjnych zespołów a obserwowaniem, jak najlepsi ludzie odchodzą do firm, które dostosowały się szybciej.
|
|
28
|
+
|
|
29
|
+
## 1. Niedobór talentów jest strukturalny, nie cykliczny
|
|
30
|
+
|
|
31
|
+
Stopa bezrobocia w Polsce wynosi 2,8% — praktycznie pełne zatrudnienie. Ale ta nagłówkowa liczba maskuje głębszy problem: populacja w wieku produkcyjnym kurczy się od 2015 roku i będzie nadal spadać o 100 000-150 000 osób rocznie do 2035 roku. Imigracja — głównie z Ukrainy, Białorusi i Azji Centralnej — częściowo kompensuje spadek demograficzny, ale nie zamyka luki w pełni, szczególnie w przypadku wykwalifikowanych i specjalistycznych ról.
|
|
32
|
+
|
|
33
|
+
Dla pracodawców oznacza to, że konkurencja o wykwalifikowanych pracowników będzie się zaostrzać z roku na rok, niezależnie od cykli gospodarczych. Firmy, które polegały na publikowaniu ogłoszeń i czekaniu na aplikacje, muszą fundamentalnie przemyśleć swoją strategię pozyskiwania talentów.
|
|
34
|
+
|
|
35
|
+
## 2. Oczekiwania płacowe nadal rosną
|
|
36
|
+
|
|
37
|
+
Średnie wynagrodzenia w Polsce wzrosły o 12% w 2025 roku, wyprzedzając inflację trzeci rok z rzędu. W sektorach takich jak IT, finanse i inżynieria wzrost przekroczył 15%. Płaca minimalna podwoiła się w ciągu pięciu lat, kompresując różnice płacowe i zmuszając pracodawców średniego segmentu do restrukturyzacji siatek wynagrodzeń.
|
|
38
|
+
|
|
39
|
+
Implikacja jest jasna: pakiety wynagrodzeń, które były konkurencyjne 12 miesięcy temu, mogą już być poniżej rynku. Regularny benchmarking wynagrodzeń — co najmniej raz w roku, najlepiej kwartalnie dla ról o wysokim popycie — jest niezbędny.
|
|
40
|
+
|
|
41
|
+
## 3. Praca zdalna i hybrydowa to standard
|
|
42
|
+
|
|
43
|
+
Popandemiczna presja na powrót do biur w dużej mierze nie powiodła się w polskich sektorach white-collar. Ponad 60% pracowników wiedzy oczekuje co najmniej 2-3 dni pracy zdalnej tygodniowo, a firmy, które wymagają pełnoetatowej obecności w biurze, raportują znacząco wyższą rotację i dłuższy czas obsadzania stanowisk.
|
|
44
|
+
|
|
45
|
+
Model hybrydowy rozszerzył również krajobraz konkurencyjny. Programista w Rzeszowie konkuruje teraz o te same stanowiska co programista w Warszawie — i może być rekrutowany przez pracodawców w Berlinie, Londynie czy San Francisco bez przeprowadzki.
|
|
46
|
+
|
|
47
|
+
## 4. AI zmienia skład siły roboczej
|
|
48
|
+
|
|
49
|
+
Generatywna AI nie zastępuje całych kategorii stanowisk — jeszcze nie. Ale zmienia to, czego pracodawcy potrzebują od swoich pracowników. Popyt na specjalistów znających AI (prompt inżynierowie, menedżerowie produktów AI, specjaliści od annotacji danych) gwałtownie wzrósł, podczas gdy rutynowe role administracyjne i związane z wprowadzaniem danych są automatyzowane lub konsolidowane.
|
|
50
|
+
|
|
51
|
+
Przyszłościowo myślący pracodawcy inwestują w programy upskillingu, które pomagają obecnym pracownikom współpracować z narzędziami AI, zamiast być przez nie zastępowanymi. To podejście obniża koszty rekrutacji i poprawia retencję.
|
|
52
|
+
|
|
53
|
+
## 5. Employer branding to nowy wyróżnik
|
|
54
|
+
|
|
55
|
+
Na rynku, na którym najlepsi kandydaci wybierają pracodawców, a nie odwrotnie, marka pracodawcy stała się najważniejszym czynnikiem sukcesu rekrutacyjnego. Firmy z silnymi, autentycznymi markami pracodawcy raportują 50% więcej kwalifikowanych aplikacji, 28% niższą rotację i znacząco krótszy czas obsadzania stanowisk.
|
|
56
|
+
|
|
57
|
+
Firmy wygrywające wyścig o employer branding nie są tymi, które wydają najwięcej — są tymi, które są najbardziej autentyczne. Treści generowane przez pracowników, przejrzyste widełki wynagrodzeń, szczere prezentacje kultury i uczciwe odpowiedzi na Glassdoor przewyższają wypolerowane kampanie korporacyjne.
|
|
58
|
+
|
|
59
|
+
## Co pracodawcy powinni zrobić teraz
|
|
60
|
+
|
|
61
|
+
Powyższe trendy wskazują jasny plan działania: benchmarkuj wynagrodzenia kwartalnie, inwestuj w employer branding, oferuj prawdziwą elastyczność, szkol swoich pracowników w zakresie AI i buduj procesy rekrutacyjne, które traktują kandydatów jak klientów. Firmy, które się dostosują, zbudują zespoły napędzające wzrost. Ci, którzy tego nie zrobią, będą wydawać coraz więcej pieniędzy na obsadzanie stanowisk coraz mniej wykwalifikowanymi kandydatami.
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "ks-026"
|
|
3
|
+
title: "Polish Labor Law Changes: What Employers Need to Know"
|
|
4
|
+
type: article
|
|
5
|
+
status: published
|
|
6
|
+
langcode: en
|
|
7
|
+
slug: labor-law-changes
|
|
8
|
+
date: 2026-03-15
|
|
9
|
+
fields:
|
|
10
|
+
category: "Legal & Compliance"
|
|
11
|
+
tags:
|
|
12
|
+
- labor-law
|
|
13
|
+
- compliance
|
|
14
|
+
- poland
|
|
15
|
+
- employment-regulations
|
|
16
|
+
author: "Jan Lewandowski"
|
|
17
|
+
author_role: "VP Sales"
|
|
18
|
+
author_image: "https://placehold.co/100x100/14101E/F59E0B?text=JL"
|
|
19
|
+
featured_image: "https://placehold.co/800x400/14101E/F59E0B?text=Labor+Law+Changes"
|
|
20
|
+
excerpt: "A practical summary of the most important Polish labor law changes in 2025-2026 — from minimum wage increases and remote work rules to new parental leave provisions."
|
|
21
|
+
reading_time: "7 min"
|
|
22
|
+
seo:
|
|
23
|
+
title: "Polish Labor Law Changes 2026 — KadoServices Guide"
|
|
24
|
+
description: "Summary of Polish labor law changes for 2025-2026. Minimum wage, remote work, parental leave, PPK, and what employers need to do to stay compliant."
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
Polish labor law continues to evolve at a pace that challenges even dedicated HR professionals. Between EU directive transpositions, domestic regulatory changes, and evolving court interpretations, staying compliant requires constant vigilance. This article summarizes the most significant changes affecting employers in 2025-2026 and provides practical guidance on what you need to do.
|
|
28
|
+
|
|
29
|
+
## Minimum Wage: Another Major Increase
|
|
30
|
+
|
|
31
|
+
The national minimum wage for 2026 has been set at PLN 4,700 gross per month (PLN 30.70 per hour for civil law contracts), up from PLN 4,300 in July 2025. This represents a 9.3% increase and continues the trend of aggressive minimum wage growth that has doubled the rate since 2020.
|
|
32
|
+
|
|
33
|
+
**Impact for employers:** Companies employing low-wage workers — particularly in manufacturing, logistics, retail, and hospitality — face significant labor cost increases. The ripple effect extends beyond minimum wage earners, as employees earning slightly above the minimum expect proportional adjustments, compressing the wage structure.
|
|
34
|
+
|
|
35
|
+
**What to do:** Review your entire compensation structure, not just minimum-wage positions. Budget for cascading adjustments and update employment contracts where fixed salary figures need to change.
|
|
36
|
+
|
|
37
|
+
## Remote Work Regulations: Matured but Complex
|
|
38
|
+
|
|
39
|
+
The remote work provisions added to the Labor Code in April 2023 have been in effect for nearly three years now, and both employers and the State Labor Inspectorate (PIP) have developed clearer expectations. Key requirements that are now rigorously enforced include:
|
|
40
|
+
|
|
41
|
+
- A written remote work agreement (separate from the employment contract) specifying conditions, equipment provision, and cost reimbursement
|
|
42
|
+
- Employer obligation to cover remote work costs — internet, electricity, equipment depreciation. Flat-rate allowances of PLN 50-150/month are now the market standard
|
|
43
|
+
- Workplace risk assessment for the remote location, including ergonomic self-assessment by the employee
|
|
44
|
+
- Data protection measures documented and communicated to remote workers
|
|
45
|
+
|
|
46
|
+
**What to do:** Audit your remote work agreements and cost reimbursement policies. If you haven't formalized these yet, you are at risk of PIP findings. Ensure remote workers have completed the required OHS training and data protection briefing.
|
|
47
|
+
|
|
48
|
+
## Parental Leave: EU Work-Life Balance Directive
|
|
49
|
+
|
|
50
|
+
Poland's implementation of the EU Work-Life Balance Directive has expanded parental leave provisions:
|
|
51
|
+
|
|
52
|
+
- Extended paternity leave from 2 to 4 weeks, available until the child is 24 months old
|
|
53
|
+
- 9 weeks of non-transferable parental leave for each parent (use-it-or-lose-it)
|
|
54
|
+
- Caregiver leave of 5 days per year for employees providing personal care to family members with serious medical conditions
|
|
55
|
+
- Force majeure leave of 2 days per year for urgent family matters
|
|
56
|
+
|
|
57
|
+
**What to do:** Update your leave policies and HR system configurations. Train managers to accommodate new leave types without penalizing employees who take them. Ensure payroll systems correctly calculate leave benefits.
|
|
58
|
+
|
|
59
|
+
## PPK Auto-Enrollment: Third Cycle
|
|
60
|
+
|
|
61
|
+
The third PPK (Pracownicze Plany Kapitałowe) auto-enrollment cycle begins in 2026. Employees who previously opted out are automatically re-enrolled and must actively opt out again if they do not wish to participate. Employer contributions remain at 1.5% of gross salary (basic) with an optional additional 2.5%.
|
|
62
|
+
|
|
63
|
+
**What to do:** Communicate the auto-enrollment cycle to employees in advance. Process opt-out declarations within the statutory 7-day window. Ensure payroll systems are configured for the enrollment wave.
|
|
64
|
+
|
|
65
|
+
## Practical Compliance Checklist
|
|
66
|
+
|
|
67
|
+
For companies that want to ensure they're fully compliant with current regulations, here's a quick-reference checklist:
|
|
68
|
+
|
|
69
|
+
1. Minimum wage compliance verified for all contract types
|
|
70
|
+
2. Remote work agreements signed with all remote/hybrid employees
|
|
71
|
+
3. Remote work cost reimbursement policy in place and being applied
|
|
72
|
+
4. Parental leave policies updated to reflect new provisions
|
|
73
|
+
5. PPK auto-enrollment communications prepared
|
|
74
|
+
6. BHP training records up to date for all employees
|
|
75
|
+
7. Employee data processing consents reviewed under GDPR
|
|
76
|
+
8. Temporary worker assignment durations tracked (18/36-month limit)
|
|
77
|
+
|
|
78
|
+
If any of these items are outstanding, prioritize them — the State Labor Inspectorate and ZUS have increased inspection frequency and are specifically targeting remote work compliance and contract classification.
|