@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.
Files changed (621) hide show
  1. package/CLAUDE.md +64 -0
  2. package/INVARIANTS.json +43 -0
  3. package/LICENSE +19 -0
  4. package/README.md +566 -0
  5. package/dist/app.d.ts +22 -0
  6. package/dist/app.d.ts.map +1 -0
  7. package/dist/app.js +464 -0
  8. package/dist/app.js.map +1 -0
  9. package/dist/built-in-theme/components/cta/cta.d.ts +5 -0
  10. package/dist/built-in-theme/components/cta/cta.d.ts.map +1 -0
  11. package/dist/built-in-theme/components/cta/cta.js +6 -0
  12. package/dist/built-in-theme/components/cta/cta.js.map +1 -0
  13. package/dist/built-in-theme/components/features/features.d.ts +5 -0
  14. package/dist/built-in-theme/components/features/features.d.ts.map +1 -0
  15. package/dist/built-in-theme/components/features/features.js +7 -0
  16. package/dist/built-in-theme/components/features/features.js.map +1 -0
  17. package/dist/built-in-theme/components/hero/hero.d.ts +5 -0
  18. package/dist/built-in-theme/components/hero/hero.d.ts.map +1 -0
  19. package/dist/built-in-theme/components/hero/hero.js +6 -0
  20. package/dist/built-in-theme/components/hero/hero.js.map +1 -0
  21. package/dist/built-in-theme/components/text/text.d.ts +4 -0
  22. package/dist/built-in-theme/components/text/text.d.ts.map +1 -0
  23. package/dist/built-in-theme/components/text/text.js +7 -0
  24. package/dist/built-in-theme/components/text/text.js.map +1 -0
  25. package/dist/built-in-theme/layouts/article.d.ts +4 -0
  26. package/dist/built-in-theme/layouts/article.d.ts.map +1 -0
  27. package/dist/built-in-theme/layouts/article.js +11 -0
  28. package/dist/built-in-theme/layouts/article.js.map +1 -0
  29. package/dist/built-in-theme/layouts/base.d.ts +7 -0
  30. package/dist/built-in-theme/layouts/base.d.ts.map +1 -0
  31. package/dist/built-in-theme/layouts/base.js +21 -0
  32. package/dist/built-in-theme/layouts/base.js.map +1 -0
  33. package/dist/built-in-theme/layouts/landing-page.d.ts +6 -0
  34. package/dist/built-in-theme/layouts/landing-page.d.ts.map +1 -0
  35. package/dist/built-in-theme/layouts/landing-page.js +6 -0
  36. package/dist/built-in-theme/layouts/landing-page.js.map +1 -0
  37. package/dist/built-in-theme/layouts/page.d.ts +4 -0
  38. package/dist/built-in-theme/layouts/page.d.ts.map +1 -0
  39. package/dist/built-in-theme/layouts/page.js +7 -0
  40. package/dist/built-in-theme/layouts/page.js.map +1 -0
  41. package/dist/cli/build.d.ts +11 -0
  42. package/dist/cli/build.d.ts.map +1 -0
  43. package/dist/cli/build.js +271 -0
  44. package/dist/cli/build.js.map +1 -0
  45. package/dist/cli/create-app.d.ts +4 -0
  46. package/dist/cli/create-app.d.ts.map +1 -0
  47. package/dist/cli/create-app.js +179 -0
  48. package/dist/cli/create-app.js.map +1 -0
  49. package/dist/cli/db-init.d.ts +6 -0
  50. package/dist/cli/db-init.d.ts.map +1 -0
  51. package/dist/cli/db-init.js +28 -0
  52. package/dist/cli/db-init.js.map +1 -0
  53. package/dist/cli/dev.d.ts +10 -0
  54. package/dist/cli/dev.d.ts.map +1 -0
  55. package/dist/cli/dev.js +68 -0
  56. package/dist/cli/dev.js.map +1 -0
  57. package/dist/cli/export-cmd.d.ts +6 -0
  58. package/dist/cli/export-cmd.d.ts.map +1 -0
  59. package/dist/cli/export-cmd.js +12 -0
  60. package/dist/cli/export-cmd.js.map +1 -0
  61. package/dist/cli/import-cmd.d.ts +6 -0
  62. package/dist/cli/import-cmd.d.ts.map +1 -0
  63. package/dist/cli/import-cmd.js +11 -0
  64. package/dist/cli/import-cmd.js.map +1 -0
  65. package/dist/cli/index.d.ts +3 -0
  66. package/dist/cli/index.d.ts.map +1 -0
  67. package/dist/cli/index.js +163 -0
  68. package/dist/cli/index.js.map +1 -0
  69. package/dist/cli/init-cmd.d.ts +20 -0
  70. package/dist/cli/init-cmd.d.ts.map +1 -0
  71. package/dist/cli/init-cmd.js +116 -0
  72. package/dist/cli/init-cmd.js.map +1 -0
  73. package/dist/cli/sync-cmd.d.ts +5 -0
  74. package/dist/cli/sync-cmd.d.ts.map +1 -0
  75. package/dist/cli/sync-cmd.js +17 -0
  76. package/dist/cli/sync-cmd.js.map +1 -0
  77. package/dist/content-engine.d.ts +50 -0
  78. package/dist/content-engine.d.ts.map +1 -0
  79. package/dist/content-engine.js +240 -0
  80. package/dist/content-engine.js.map +1 -0
  81. package/dist/db/connection.d.ts +9 -0
  82. package/dist/db/connection.d.ts.map +1 -0
  83. package/dist/db/connection.js +121 -0
  84. package/dist/db/connection.js.map +1 -0
  85. package/dist/db/schema.d.ts +1178 -0
  86. package/dist/db/schema.d.ts.map +1 -0
  87. package/dist/db/schema.js +79 -0
  88. package/dist/db/schema.js.map +1 -0
  89. package/dist/index.d.ts +12 -0
  90. package/dist/index.d.ts.map +1 -0
  91. package/dist/index.js +8 -0
  92. package/dist/index.js.map +1 -0
  93. package/dist/lib/auth.d.ts +14 -0
  94. package/dist/lib/auth.d.ts.map +1 -0
  95. package/dist/lib/auth.js +40 -0
  96. package/dist/lib/auth.js.map +1 -0
  97. package/dist/lib/config-files.d.ts +8 -0
  98. package/dist/lib/config-files.d.ts.map +1 -0
  99. package/dist/lib/config-files.js +72 -0
  100. package/dist/lib/config-files.js.map +1 -0
  101. package/dist/lib/content-files.d.ts +5 -0
  102. package/dist/lib/content-files.d.ts.map +1 -0
  103. package/dist/lib/content-files.js +156 -0
  104. package/dist/lib/content-files.js.map +1 -0
  105. package/dist/lib/i18n.d.ts +33 -0
  106. package/dist/lib/i18n.d.ts.map +1 -0
  107. package/dist/lib/i18n.js +247 -0
  108. package/dist/lib/i18n.js.map +1 -0
  109. package/dist/lib/multisite.d.ts +23 -0
  110. package/dist/lib/multisite.d.ts.map +1 -0
  111. package/dist/lib/multisite.js +73 -0
  112. package/dist/lib/multisite.js.map +1 -0
  113. package/dist/lib/paths.d.ts +6 -0
  114. package/dist/lib/paths.d.ts.map +1 -0
  115. package/dist/lib/paths.js +25 -0
  116. package/dist/lib/paths.js.map +1 -0
  117. package/dist/lib/schema-loader.d.ts +25 -0
  118. package/dist/lib/schema-loader.d.ts.map +1 -0
  119. package/dist/lib/schema-loader.js +45 -0
  120. package/dist/lib/schema-loader.js.map +1 -0
  121. package/dist/lib/seo.d.ts +18 -0
  122. package/dist/lib/seo.d.ts.map +1 -0
  123. package/dist/lib/seo.js +212 -0
  124. package/dist/lib/seo.js.map +1 -0
  125. package/dist/lib/sync.d.ts +33 -0
  126. package/dist/lib/sync.d.ts.map +1 -0
  127. package/dist/lib/sync.js +308 -0
  128. package/dist/lib/sync.js.map +1 -0
  129. package/dist/lib/taxonomy.d.ts +29 -0
  130. package/dist/lib/taxonomy.d.ts.map +1 -0
  131. package/dist/lib/taxonomy.js +170 -0
  132. package/dist/lib/taxonomy.js.map +1 -0
  133. package/dist/lib/template-renderer.d.ts +6 -0
  134. package/dist/lib/template-renderer.d.ts.map +1 -0
  135. package/dist/lib/template-renderer.js +80 -0
  136. package/dist/lib/template-renderer.js.map +1 -0
  137. package/dist/lib/theme-loader.d.ts +5 -0
  138. package/dist/lib/theme-loader.d.ts.map +1 -0
  139. package/dist/lib/theme-loader.js +199 -0
  140. package/dist/lib/theme-loader.js.map +1 -0
  141. package/dist/lib/theme-types.d.ts +39 -0
  142. package/dist/lib/theme-types.d.ts.map +1 -0
  143. package/dist/lib/theme-types.js +2 -0
  144. package/dist/lib/theme-types.js.map +1 -0
  145. package/dist/lib/types.d.ts +91 -0
  146. package/dist/lib/types.d.ts.map +1 -0
  147. package/dist/lib/types.js +2 -0
  148. package/dist/lib/types.js.map +1 -0
  149. package/dist/routes/admin/content-edit.d.ts +10 -0
  150. package/dist/routes/admin/content-edit.d.ts.map +1 -0
  151. package/dist/routes/admin/content-edit.js +325 -0
  152. package/dist/routes/admin/content-edit.js.map +1 -0
  153. package/dist/routes/admin/content-list.d.ts +10 -0
  154. package/dist/routes/admin/content-list.d.ts.map +1 -0
  155. package/dist/routes/admin/content-list.js +162 -0
  156. package/dist/routes/admin/content-list.js.map +1 -0
  157. package/dist/routes/admin/content.d.ts +3 -0
  158. package/dist/routes/admin/content.d.ts.map +1 -0
  159. package/dist/routes/admin/content.js +12 -0
  160. package/dist/routes/admin/content.js.map +1 -0
  161. package/dist/routes/admin/dashboard.d.ts +4 -0
  162. package/dist/routes/admin/dashboard.d.ts.map +1 -0
  163. package/dist/routes/admin/dashboard.js +121 -0
  164. package/dist/routes/admin/dashboard.js.map +1 -0
  165. package/dist/routes/admin/export-route.d.ts +10 -0
  166. package/dist/routes/admin/export-route.d.ts.map +1 -0
  167. package/dist/routes/admin/export-route.js +19 -0
  168. package/dist/routes/admin/export-route.js.map +1 -0
  169. package/dist/routes/admin/index.d.ts +9 -0
  170. package/dist/routes/admin/index.d.ts.map +1 -0
  171. package/dist/routes/admin/index.js +27 -0
  172. package/dist/routes/admin/index.js.map +1 -0
  173. package/dist/routes/admin/layout.d.ts +17 -0
  174. package/dist/routes/admin/layout.d.ts.map +1 -0
  175. package/dist/routes/admin/layout.js +110 -0
  176. package/dist/routes/admin/layout.js.map +1 -0
  177. package/dist/routes/admin/login.d.ts +5 -0
  178. package/dist/routes/admin/login.d.ts.map +1 -0
  179. package/dist/routes/admin/login.js +113 -0
  180. package/dist/routes/admin/login.js.map +1 -0
  181. package/dist/routes/admin/media.d.ts +10 -0
  182. package/dist/routes/admin/media.d.ts.map +1 -0
  183. package/dist/routes/admin/media.js +192 -0
  184. package/dist/routes/admin/media.js.map +1 -0
  185. package/dist/routes/admin/middleware.d.ts +8 -0
  186. package/dist/routes/admin/middleware.d.ts.map +1 -0
  187. package/dist/routes/admin/middleware.js +29 -0
  188. package/dist/routes/admin/middleware.js.map +1 -0
  189. package/dist/routes/admin/section-builder.d.ts +10 -0
  190. package/dist/routes/admin/section-builder.d.ts.map +1 -0
  191. package/dist/routes/admin/section-builder.js +487 -0
  192. package/dist/routes/admin/section-builder.js.map +1 -0
  193. package/dist/routes/admin/settings.d.ts +10 -0
  194. package/dist/routes/admin/settings.d.ts.map +1 -0
  195. package/dist/routes/admin/settings.js +209 -0
  196. package/dist/routes/admin/settings.js.map +1 -0
  197. package/dist/routes/admin/site-switcher.d.ts +3 -0
  198. package/dist/routes/admin/site-switcher.d.ts.map +1 -0
  199. package/dist/routes/admin/site-switcher.js +36 -0
  200. package/dist/routes/admin/site-switcher.js.map +1 -0
  201. package/dist/routes/admin/taxonomy.d.ts +10 -0
  202. package/dist/routes/admin/taxonomy.d.ts.map +1 -0
  203. package/dist/routes/admin/taxonomy.js +297 -0
  204. package/dist/routes/admin/taxonomy.js.map +1 -0
  205. package/dist/routes/admin/users.d.ts +10 -0
  206. package/dist/routes/admin/users.d.ts.map +1 -0
  207. package/dist/routes/admin/users.js +227 -0
  208. package/dist/routes/admin/users.js.map +1 -0
  209. package/package.json +75 -0
  210. package/src/built-in-theme/components/cta/cta.tsx +18 -0
  211. package/src/built-in-theme/components/cta/schema.yaml +17 -0
  212. package/src/built-in-theme/components/features/features.tsx +18 -0
  213. package/src/built-in-theme/components/features/schema.yaml +22 -0
  214. package/src/built-in-theme/components/hero/hero.tsx +18 -0
  215. package/src/built-in-theme/components/hero/schema.yaml +17 -0
  216. package/src/built-in-theme/components/text/schema.yaml +12 -0
  217. package/src/built-in-theme/components/text/text.tsx +11 -0
  218. package/src/built-in-theme/layouts/article.tsx +20 -0
  219. package/src/built-in-theme/layouts/base.tsx +50 -0
  220. package/src/built-in-theme/layouts/landing-page.tsx +15 -0
  221. package/src/built-in-theme/layouts/page.tsx +11 -0
  222. package/src/built-in-theme/theme.yaml +4 -0
  223. package/starters/blank/config/content-types.yaml +47 -0
  224. package/starters/blank/config/section-types.yaml +115 -0
  225. package/starters/blank/config/settings.yaml +12 -0
  226. package/starters/blank/content/landing-pages/homepage.yaml +55 -0
  227. package/starters/blank/content/pages/about.md +27 -0
  228. package/starters/blank/starter.yaml +14 -0
  229. package/starters/blank/themes/starter/_types.ts +93 -0
  230. package/starters/blank/themes/starter/components/blog-listing/blog-listing.tsx +102 -0
  231. package/starters/blank/themes/starter/components/blog-listing/schema.yaml +21 -0
  232. package/starters/blank/themes/starter/components/columns/columns.tsx +101 -0
  233. package/starters/blank/themes/starter/components/columns/schema.yaml +23 -0
  234. package/starters/blank/themes/starter/components/counters/counters.css +13 -0
  235. package/starters/blank/themes/starter/components/counters/counters.tsx +81 -0
  236. package/starters/blank/themes/starter/components/counters/schema.yaml +23 -0
  237. package/starters/blank/themes/starter/components/cta/cta.tsx +57 -0
  238. package/starters/blank/themes/starter/components/cta/schema.yaml +30 -0
  239. package/starters/blank/themes/starter/components/faq/faq.tsx +77 -0
  240. package/starters/blank/themes/starter/components/faq/schema.yaml +20 -0
  241. package/starters/blank/themes/starter/components/features/features.tsx +82 -0
  242. package/starters/blank/themes/starter/components/features/schema.yaml +19 -0
  243. package/starters/blank/themes/starter/components/form/form.tsx +126 -0
  244. package/starters/blank/themes/starter/components/form/schema.yaml +18 -0
  245. package/starters/blank/themes/starter/components/gallery/gallery.tsx +85 -0
  246. package/starters/blank/themes/starter/components/gallery/schema.yaml +27 -0
  247. package/starters/blank/themes/starter/components/hero/hero.tsx +77 -0
  248. package/starters/blank/themes/starter/components/hero/schema.yaml +26 -0
  249. package/starters/blank/themes/starter/components/logo-slider/logo-slider.css +21 -0
  250. package/starters/blank/themes/starter/components/logo-slider/logo-slider.tsx +81 -0
  251. package/starters/blank/themes/starter/components/logo-slider/schema.yaml +23 -0
  252. package/starters/blank/themes/starter/components/pricing/pricing.tsx +141 -0
  253. package/starters/blank/themes/starter/components/pricing/schema.yaml +44 -0
  254. package/starters/blank/themes/starter/components/testimonials/schema.yaml +26 -0
  255. package/starters/blank/themes/starter/components/testimonials/testimonials.tsx +100 -0
  256. package/starters/blank/themes/starter/components/text/schema.yaml +12 -0
  257. package/starters/blank/themes/starter/components/text/text.tsx +62 -0
  258. package/starters/blank/themes/starter/components/text-with-image/schema.yaml +30 -0
  259. package/starters/blank/themes/starter/components/text-with-image/text-with-image.tsx +86 -0
  260. package/starters/blank/themes/starter/components/video/schema.yaml +19 -0
  261. package/starters/blank/themes/starter/components/video/video.tsx +98 -0
  262. package/starters/blank/themes/starter/layouts/article.tsx +42 -0
  263. package/starters/blank/themes/starter/layouts/base.tsx +92 -0
  264. package/starters/blank/themes/starter/layouts/landing-page.tsx +14 -0
  265. package/starters/blank/themes/starter/layouts/page.tsx +29 -0
  266. package/starters/blank/themes/starter/partials/footer.tsx +22 -0
  267. package/starters/blank/themes/starter/partials/header.tsx +32 -0
  268. package/starters/blank/themes/starter/static/style.css +125 -0
  269. package/starters/blank/themes/starter/theme.yaml +16 -0
  270. package/starters/kadoservices/config/content-types.yaml +239 -0
  271. package/starters/kadoservices/config/languages.yaml +12 -0
  272. package/starters/kadoservices/config/section-types.yaml +379 -0
  273. package/starters/kadoservices/config/settings.yaml +15 -0
  274. package/starters/kadoservices/config/sites.yaml +14 -0
  275. package/starters/kadoservices/config/taxonomies.yaml +61 -0
  276. package/starters/kadoservices/config/translations/de.yaml +120 -0
  277. package/starters/kadoservices/config/translations/en.yaml +120 -0
  278. package/starters/kadoservices/config/translations/pl.yaml +120 -0
  279. package/starters/kadoservices/content/articles/employer-branding-strategies.md +61 -0
  280. package/starters/kadoservices/content/articles/hiring-trends-2026.md +61 -0
  281. package/starters/kadoservices/content/articles/hiring-trends-2026.pl.md +61 -0
  282. package/starters/kadoservices/content/articles/labor-law-changes.md +78 -0
  283. package/starters/kadoservices/content/articles/temporary-staffing-guide.md +76 -0
  284. package/starters/kadoservices/content/articles/temporary-staffing-guide.pl.md +76 -0
  285. package/starters/kadoservices/content/case-studies/finance-rpo-program.md +68 -0
  286. package/starters/kadoservices/content/case-studies/manufacturing-mass-recruitment.md +65 -0
  287. package/starters/kadoservices/content/case-studies/manufacturing-mass-recruitment.pl.md +65 -0
  288. package/starters/kadoservices/content/case-studies/retail-seasonal-staffing.md +69 -0
  289. package/starters/kadoservices/content/industries/finance-shared-services.md +59 -0
  290. package/starters/kadoservices/content/industries/healthcare.md +64 -0
  291. package/starters/kadoservices/content/industries/it-technology.md +61 -0
  292. package/starters/kadoservices/content/industries/logistics.md +54 -0
  293. package/starters/kadoservices/content/industries/manufacturing.md +61 -0
  294. package/starters/kadoservices/content/industries/retail.md +56 -0
  295. package/starters/kadoservices/content/landing-pages/homepage.pl.yaml +198 -0
  296. package/starters/kadoservices/content/landing-pages/homepage.yaml +198 -0
  297. package/starters/kadoservices/content/locations/gdansk.md +32 -0
  298. package/starters/kadoservices/content/locations/krakow.md +30 -0
  299. package/starters/kadoservices/content/locations/warsaw.md +30 -0
  300. package/starters/kadoservices/content/locations/wroclaw.md +32 -0
  301. package/starters/kadoservices/content/pages/about.md +58 -0
  302. package/starters/kadoservices/content/pages/about.pl.md +58 -0
  303. package/starters/kadoservices/content/pages/careers.md +55 -0
  304. package/starters/kadoservices/content/pages/clients.md +65 -0
  305. package/starters/kadoservices/content/pages/contact.md +74 -0
  306. package/starters/kadoservices/content/pages/contact.pl.md +74 -0
  307. package/starters/kadoservices/content/pages/faq.md +76 -0
  308. package/starters/kadoservices/content/services/employer-branding.md +70 -0
  309. package/starters/kadoservices/content/services/hr-consulting.md +64 -0
  310. package/starters/kadoservices/content/services/outsourcing-rpo.md +78 -0
  311. package/starters/kadoservices/content/services/outsourcing-rpo.pl.md +67 -0
  312. package/starters/kadoservices/content/services/payroll-hr-admin.md +66 -0
  313. package/starters/kadoservices/content/services/permanent-recruitment.md +78 -0
  314. package/starters/kadoservices/content/services/permanent-recruitment.pl.md +78 -0
  315. package/starters/kadoservices/content/services/temporary-staffing.md +78 -0
  316. package/starters/kadoservices/content/team/anna-kowalska.md +26 -0
  317. package/starters/kadoservices/content/team/jan-lewandowski.md +26 -0
  318. package/starters/kadoservices/content/team/katarzyna-zielinska.md +26 -0
  319. package/starters/kadoservices/content/team/maria-wisniewska.md +28 -0
  320. package/starters/kadoservices/content/team/tomasz-nowak.md +26 -0
  321. package/starters/kadoservices/starter.yaml +15 -0
  322. package/starters/kadoservices/themes/kadoservices/_types.ts +93 -0
  323. package/starters/kadoservices/themes/kadoservices/components/blog-listing/blog-listing.tsx +197 -0
  324. package/starters/kadoservices/themes/kadoservices/components/blog-listing/schema.yaml +21 -0
  325. package/starters/kadoservices/themes/kadoservices/components/columns/columns.tsx +104 -0
  326. package/starters/kadoservices/themes/kadoservices/components/columns/schema.yaml +23 -0
  327. package/starters/kadoservices/themes/kadoservices/components/counters/counters.css +13 -0
  328. package/starters/kadoservices/themes/kadoservices/components/counters/counters.tsx +103 -0
  329. package/starters/kadoservices/themes/kadoservices/components/counters/schema.yaml +23 -0
  330. package/starters/kadoservices/themes/kadoservices/components/cta/cta.tsx +100 -0
  331. package/starters/kadoservices/themes/kadoservices/components/cta/schema.yaml +30 -0
  332. package/starters/kadoservices/themes/kadoservices/components/faq/faq.tsx +77 -0
  333. package/starters/kadoservices/themes/kadoservices/components/faq/schema.yaml +20 -0
  334. package/starters/kadoservices/themes/kadoservices/components/features/features.tsx +151 -0
  335. package/starters/kadoservices/themes/kadoservices/components/features/schema.yaml +19 -0
  336. package/starters/kadoservices/themes/kadoservices/components/form/form.tsx +135 -0
  337. package/starters/kadoservices/themes/kadoservices/components/form/schema.yaml +18 -0
  338. package/starters/kadoservices/themes/kadoservices/components/gallery/gallery.tsx +90 -0
  339. package/starters/kadoservices/themes/kadoservices/components/gallery/schema.yaml +27 -0
  340. package/starters/kadoservices/themes/kadoservices/components/hero/hero.tsx +175 -0
  341. package/starters/kadoservices/themes/kadoservices/components/hero/schema.yaml +26 -0
  342. package/starters/kadoservices/themes/kadoservices/components/logo-slider/logo-slider.css +21 -0
  343. package/starters/kadoservices/themes/kadoservices/components/logo-slider/logo-slider.tsx +83 -0
  344. package/starters/kadoservices/themes/kadoservices/components/logo-slider/schema.yaml +23 -0
  345. package/starters/kadoservices/themes/kadoservices/components/pricing/pricing.tsx +161 -0
  346. package/starters/kadoservices/themes/kadoservices/components/pricing/schema.yaml +44 -0
  347. package/starters/kadoservices/themes/kadoservices/components/testimonials/schema.yaml +26 -0
  348. package/starters/kadoservices/themes/kadoservices/components/testimonials/testimonials.css +13 -0
  349. package/starters/kadoservices/themes/kadoservices/components/testimonials/testimonials.tsx +150 -0
  350. package/starters/kadoservices/themes/kadoservices/components/text/schema.yaml +12 -0
  351. package/starters/kadoservices/themes/kadoservices/components/text/text.tsx +67 -0
  352. package/starters/kadoservices/themes/kadoservices/components/text-with-image/schema.yaml +30 -0
  353. package/starters/kadoservices/themes/kadoservices/components/text-with-image/text-with-image.tsx +92 -0
  354. package/starters/kadoservices/themes/kadoservices/components/video/schema.yaml +19 -0
  355. package/starters/kadoservices/themes/kadoservices/components/video/video.tsx +103 -0
  356. package/starters/kadoservices/themes/kadoservices/layouts/404.tsx +96 -0
  357. package/starters/kadoservices/themes/kadoservices/layouts/article.tsx +140 -0
  358. package/starters/kadoservices/themes/kadoservices/layouts/base.tsx +669 -0
  359. package/starters/kadoservices/themes/kadoservices/layouts/case-study.tsx +240 -0
  360. package/starters/kadoservices/themes/kadoservices/layouts/index--articles.tsx +250 -0
  361. package/starters/kadoservices/themes/kadoservices/layouts/index--case-studies.tsx +232 -0
  362. package/starters/kadoservices/themes/kadoservices/layouts/index--services.tsx +237 -0
  363. package/starters/kadoservices/themes/kadoservices/layouts/index.tsx +96 -0
  364. package/starters/kadoservices/themes/kadoservices/layouts/industry.tsx +121 -0
  365. package/starters/kadoservices/themes/kadoservices/layouts/landing-page.tsx +14 -0
  366. package/starters/kadoservices/themes/kadoservices/layouts/page--about.tsx +158 -0
  367. package/starters/kadoservices/themes/kadoservices/layouts/page--careers.tsx +214 -0
  368. package/starters/kadoservices/themes/kadoservices/layouts/page--contact.tsx +218 -0
  369. package/starters/kadoservices/themes/kadoservices/layouts/page.tsx +45 -0
  370. package/starters/kadoservices/themes/kadoservices/layouts/service.tsx +235 -0
  371. package/starters/kadoservices/themes/kadoservices/partials/footer.tsx +109 -0
  372. package/starters/kadoservices/themes/kadoservices/partials/header.tsx +53 -0
  373. package/starters/kadoservices/themes/kadoservices/static/images/article-platform-engineering.jpg +0 -0
  374. package/starters/kadoservices/themes/kadoservices/static/images/barka-logo.png +0 -0
  375. package/starters/kadoservices/themes/kadoservices/static/images/case-study-banking-dashboard.jpg +0 -0
  376. package/starters/kadoservices/themes/kadoservices/static/images/case-study-banking.png +0 -0
  377. package/starters/kadoservices/themes/kadoservices/static/images/case-study-ecommerce-dashboard.jpg +0 -0
  378. package/starters/kadoservices/themes/kadoservices/static/images/case-study-healthcare-dashboard.jpg +0 -0
  379. package/starters/kadoservices/themes/kadoservices/static/images/case-study-healthcare.png +0 -0
  380. package/starters/kadoservices/themes/kadoservices/static/images/case-study-retail.png +0 -0
  381. package/starters/kadoservices/themes/kadoservices/static/images/handshake.jpg +0 -0
  382. package/starters/kadoservices/themes/kadoservices/static/images/hero-bg.jpg +0 -0
  383. package/starters/kadoservices/themes/kadoservices/static/images/hero-bg.png +0 -0
  384. package/starters/kadoservices/themes/kadoservices/static/images/lokatech-logo.png +0 -0
  385. package/starters/kadoservices/themes/kadoservices/static/images/office-warsaw.png +0 -0
  386. package/starters/kadoservices/themes/kadoservices/static/images/office.jpg +0 -0
  387. package/starters/kadoservices/themes/kadoservices/static/images/team-anna-kowalska.png +0 -0
  388. package/starters/kadoservices/themes/kadoservices/static/images/team-collaboration.jpg +0 -0
  389. package/starters/kadoservices/themes/kadoservices/static/images/team-jan-nowak.png +0 -0
  390. package/starters/kadoservices/themes/kadoservices/static/images/team-katarzyna-kaminska.png +0 -0
  391. package/starters/kadoservices/themes/kadoservices/static/images/team-maria-wisniewska.png +0 -0
  392. package/starters/kadoservices/themes/kadoservices/static/images/team-meeting.jpg +0 -0
  393. package/starters/kadoservices/themes/kadoservices/static/images/team-strategy-session.jpg +0 -0
  394. package/starters/kadoservices/themes/kadoservices/static/images/team-tomasz-lewandowski.png +0 -0
  395. package/starters/kadoservices/themes/kadoservices/static/style.css +542 -0
  396. package/starters/kadoservices/themes/kadoservices/theme.yaml +21 -0
  397. package/starters/kadoservices/themes/starter/_types.ts +93 -0
  398. package/starters/kadoservices/themes/starter/components/blog-listing/blog-listing.tsx +102 -0
  399. package/starters/kadoservices/themes/starter/components/blog-listing/schema.yaml +21 -0
  400. package/starters/kadoservices/themes/starter/components/columns/columns.tsx +101 -0
  401. package/starters/kadoservices/themes/starter/components/columns/schema.yaml +23 -0
  402. package/starters/kadoservices/themes/starter/components/counters/counters.css +13 -0
  403. package/starters/kadoservices/themes/starter/components/counters/counters.tsx +81 -0
  404. package/starters/kadoservices/themes/starter/components/counters/schema.yaml +23 -0
  405. package/starters/kadoservices/themes/starter/components/cta/cta.tsx +57 -0
  406. package/starters/kadoservices/themes/starter/components/cta/schema.yaml +30 -0
  407. package/starters/kadoservices/themes/starter/components/faq/faq.tsx +77 -0
  408. package/starters/kadoservices/themes/starter/components/faq/schema.yaml +20 -0
  409. package/starters/kadoservices/themes/starter/components/features/features.tsx +82 -0
  410. package/starters/kadoservices/themes/starter/components/features/schema.yaml +19 -0
  411. package/starters/kadoservices/themes/starter/components/form/form.tsx +126 -0
  412. package/starters/kadoservices/themes/starter/components/form/schema.yaml +18 -0
  413. package/starters/kadoservices/themes/starter/components/gallery/gallery.tsx +85 -0
  414. package/starters/kadoservices/themes/starter/components/gallery/schema.yaml +27 -0
  415. package/starters/kadoservices/themes/starter/components/hero/hero.tsx +77 -0
  416. package/starters/kadoservices/themes/starter/components/hero/schema.yaml +26 -0
  417. package/starters/kadoservices/themes/starter/components/logo-slider/logo-slider.css +21 -0
  418. package/starters/kadoservices/themes/starter/components/logo-slider/logo-slider.tsx +81 -0
  419. package/starters/kadoservices/themes/starter/components/logo-slider/schema.yaml +23 -0
  420. package/starters/kadoservices/themes/starter/components/pricing/pricing.tsx +141 -0
  421. package/starters/kadoservices/themes/starter/components/pricing/schema.yaml +44 -0
  422. package/starters/kadoservices/themes/starter/components/testimonials/schema.yaml +26 -0
  423. package/starters/kadoservices/themes/starter/components/testimonials/testimonials.tsx +100 -0
  424. package/starters/kadoservices/themes/starter/components/text/schema.yaml +12 -0
  425. package/starters/kadoservices/themes/starter/components/text/text.tsx +62 -0
  426. package/starters/kadoservices/themes/starter/components/text-with-image/schema.yaml +30 -0
  427. package/starters/kadoservices/themes/starter/components/text-with-image/text-with-image.tsx +86 -0
  428. package/starters/kadoservices/themes/starter/components/video/schema.yaml +19 -0
  429. package/starters/kadoservices/themes/starter/components/video/video.tsx +98 -0
  430. package/starters/kadoservices/themes/starter/layouts/article.tsx +42 -0
  431. package/starters/kadoservices/themes/starter/layouts/base.tsx +92 -0
  432. package/starters/kadoservices/themes/starter/layouts/landing-page.tsx +14 -0
  433. package/starters/kadoservices/themes/starter/layouts/page.tsx +29 -0
  434. package/starters/kadoservices/themes/starter/partials/footer.tsx +22 -0
  435. package/starters/kadoservices/themes/starter/partials/header.tsx +32 -0
  436. package/starters/kadoservices/themes/starter/static/style.css +125 -0
  437. package/starters/kadoservices/themes/starter/theme.yaml +16 -0
  438. package/starters/lokatech/config/content-types.yaml +226 -0
  439. package/starters/lokatech/config/languages.yaml +12 -0
  440. package/starters/lokatech/config/section-types.yaml +379 -0
  441. package/starters/lokatech/config/settings.yaml +15 -0
  442. package/starters/lokatech/config/sites.yaml +21 -0
  443. package/starters/lokatech/config/taxonomies.yaml +65 -0
  444. package/starters/lokatech/config/translations/de.yaml +108 -0
  445. package/starters/lokatech/config/translations/en.yaml +108 -0
  446. package/starters/lokatech/config/translations/pl.yaml +108 -0
  447. package/starters/lokatech/content/articles/ai-in-enterprise.md +51 -0
  448. package/starters/lokatech/content/articles/api-gateway-patterns-enterprise.md +35 -0
  449. package/starters/lokatech/content/articles/design-system-enterprise-scale.md +35 -0
  450. package/starters/lokatech/content/articles/domain-driven-design-bounded-contexts.md +35 -0
  451. package/starters/lokatech/content/articles/engineering-team-scaling-50-to-200.md +33 -0
  452. package/starters/lokatech/content/articles/event-driven-architecture-microservices.md +35 -0
  453. package/starters/lokatech/content/articles/future-of-cloud-native.md +47 -0
  454. package/starters/lokatech/content/articles/getting-started.md +83 -0
  455. package/starters/lokatech/content/articles/headless-cms-composable-architecture.md +35 -0
  456. package/starters/lokatech/content/articles/kubernetes-cost-optimization-finops.md +33 -0
  457. package/starters/lokatech/content/articles/legacy-modernization-strangler-fig.md +35 -0
  458. package/starters/lokatech/content/articles/llm-fine-tuning-enterprise-data.md +33 -0
  459. package/starters/lokatech/content/articles/observability-opentelemetry-stack.md +35 -0
  460. package/starters/lokatech/content/articles/platform-engineering-internal-developer-portals.md +33 -0
  461. package/starters/lokatech/content/articles/platform-engineering-internal-developer-portals.pl.md +33 -0
  462. package/starters/lokatech/content/articles/rag-retrieval-augmented-generation-production.md +35 -0
  463. package/starters/lokatech/content/articles/remote-engineering-culture-distributed-teams.md +35 -0
  464. package/starters/lokatech/content/articles/supply-chain-security-sbom.md +35 -0
  465. package/starters/lokatech/content/articles/welcome.md +42 -0
  466. package/starters/lokatech/content/articles/welcome.pl.md +39 -0
  467. package/starters/lokatech/content/articles/zero-trust-network-architecture.md +35 -0
  468. package/starters/lokatech/content/articles/zero-trust-security.md +55 -0
  469. package/starters/lokatech/content/case-studies/banking-platform-modernization.md +67 -0
  470. package/starters/lokatech/content/case-studies/ecommerce-platform-rewrite.md +64 -0
  471. package/starters/lokatech/content/case-studies/govtech-citizen-portal.md +59 -0
  472. package/starters/lokatech/content/case-studies/healthcare-data-pipeline.md +67 -0
  473. package/starters/lokatech/content/case-studies/healthcare-data-pipeline.pl.md +60 -0
  474. package/starters/lokatech/content/case-studies/insurance-claims-automation.md +58 -0
  475. package/starters/lokatech/content/case-studies/manufacturing-iot-digital-twin.md +58 -0
  476. package/starters/lokatech/content/case-studies/retail-cloud-migration.md +49 -0
  477. package/starters/lokatech/content/case-studies/telecom-5g-platform.md +57 -0
  478. package/starters/lokatech/content/industries/energy-utilities.md +35 -0
  479. package/starters/lokatech/content/industries/financial-services.md +35 -0
  480. package/starters/lokatech/content/industries/healthcare.md +35 -0
  481. package/starters/lokatech/content/industries/manufacturing.md +35 -0
  482. package/starters/lokatech/content/industries/retail-ecommerce.md +35 -0
  483. package/starters/lokatech/content/industries/telecom-media.md +35 -0
  484. package/starters/lokatech/content/landing-pages/homepage.pl.yaml +182 -0
  485. package/starters/lokatech/content/landing-pages/homepage.yaml +236 -0
  486. package/starters/lokatech/content/locations/berlin.md +22 -0
  487. package/starters/lokatech/content/locations/krakow.md +22 -0
  488. package/starters/lokatech/content/locations/london.md +22 -0
  489. package/starters/lokatech/content/locations/warsaw.md +22 -0
  490. package/starters/lokatech/content/locations/wroclaw.md +22 -0
  491. package/starters/lokatech/content/pages/about.md +55 -0
  492. package/starters/lokatech/content/pages/about.pl.md +36 -0
  493. package/starters/lokatech/content/pages/careers.md +50 -0
  494. package/starters/lokatech/content/pages/contact.md +51 -0
  495. package/starters/lokatech/content/pages/contact.pl.md +51 -0
  496. package/starters/lokatech/content/pages/security-compliance.md +66 -0
  497. package/starters/lokatech/content/services/cloud-infrastructure.md +73 -0
  498. package/starters/lokatech/content/services/custom-software-development.md +74 -0
  499. package/starters/lokatech/content/services/custom-software-development.pl.md +80 -0
  500. package/starters/lokatech/content/services/cybersecurity.md +72 -0
  501. package/starters/lokatech/content/services/data-ai.md +74 -0
  502. package/starters/lokatech/content/services/digital-transformation.md +70 -0
  503. package/starters/lokatech/content/services/it-outsourcing.md +72 -0
  504. package/starters/lokatech/content/team/anna-kowalska.md +21 -0
  505. package/starters/lokatech/content/team/jan-nowak.md +21 -0
  506. package/starters/lokatech/content/team/katarzyna-kaminska.md +20 -0
  507. package/starters/lokatech/content/team/maria-wisniewska.md +20 -0
  508. package/starters/lokatech/content/team/tomasz-lewandowski.md +20 -0
  509. package/starters/lokatech/starter.yaml +15 -0
  510. package/starters/lokatech/themes/lokatech/_types.ts +93 -0
  511. package/starters/lokatech/themes/lokatech/components/blog-listing/blog-listing.tsx +197 -0
  512. package/starters/lokatech/themes/lokatech/components/blog-listing/schema.yaml +21 -0
  513. package/starters/lokatech/themes/lokatech/components/columns/columns.tsx +104 -0
  514. package/starters/lokatech/themes/lokatech/components/columns/schema.yaml +23 -0
  515. package/starters/lokatech/themes/lokatech/components/counters/counters.css +13 -0
  516. package/starters/lokatech/themes/lokatech/components/counters/counters.tsx +103 -0
  517. package/starters/lokatech/themes/lokatech/components/counters/schema.yaml +23 -0
  518. package/starters/lokatech/themes/lokatech/components/cta/cta.tsx +100 -0
  519. package/starters/lokatech/themes/lokatech/components/cta/schema.yaml +30 -0
  520. package/starters/lokatech/themes/lokatech/components/faq/faq.tsx +77 -0
  521. package/starters/lokatech/themes/lokatech/components/faq/schema.yaml +20 -0
  522. package/starters/lokatech/themes/lokatech/components/features/features.tsx +149 -0
  523. package/starters/lokatech/themes/lokatech/components/features/schema.yaml +19 -0
  524. package/starters/lokatech/themes/lokatech/components/form/form.tsx +135 -0
  525. package/starters/lokatech/themes/lokatech/components/form/schema.yaml +18 -0
  526. package/starters/lokatech/themes/lokatech/components/gallery/gallery.tsx +90 -0
  527. package/starters/lokatech/themes/lokatech/components/gallery/schema.yaml +27 -0
  528. package/starters/lokatech/themes/lokatech/components/hero/hero.tsx +167 -0
  529. package/starters/lokatech/themes/lokatech/components/hero/schema.yaml +26 -0
  530. package/starters/lokatech/themes/lokatech/components/logo-slider/logo-slider.css +21 -0
  531. package/starters/lokatech/themes/lokatech/components/logo-slider/logo-slider.tsx +83 -0
  532. package/starters/lokatech/themes/lokatech/components/logo-slider/schema.yaml +23 -0
  533. package/starters/lokatech/themes/lokatech/components/pricing/pricing.tsx +161 -0
  534. package/starters/lokatech/themes/lokatech/components/pricing/schema.yaml +44 -0
  535. package/starters/lokatech/themes/lokatech/components/testimonials/schema.yaml +26 -0
  536. package/starters/lokatech/themes/lokatech/components/testimonials/testimonials.css +13 -0
  537. package/starters/lokatech/themes/lokatech/components/testimonials/testimonials.tsx +150 -0
  538. package/starters/lokatech/themes/lokatech/components/text/schema.yaml +12 -0
  539. package/starters/lokatech/themes/lokatech/components/text/text.tsx +67 -0
  540. package/starters/lokatech/themes/lokatech/components/text-with-image/schema.yaml +30 -0
  541. package/starters/lokatech/themes/lokatech/components/text-with-image/text-with-image.tsx +92 -0
  542. package/starters/lokatech/themes/lokatech/components/video/schema.yaml +19 -0
  543. package/starters/lokatech/themes/lokatech/components/video/video.tsx +103 -0
  544. package/starters/lokatech/themes/lokatech/layouts/404.tsx +96 -0
  545. package/starters/lokatech/themes/lokatech/layouts/article.tsx +140 -0
  546. package/starters/lokatech/themes/lokatech/layouts/base.tsx +672 -0
  547. package/starters/lokatech/themes/lokatech/layouts/case-study.tsx +233 -0
  548. package/starters/lokatech/themes/lokatech/layouts/index--articles.tsx +246 -0
  549. package/starters/lokatech/themes/lokatech/layouts/index--case-studies.tsx +230 -0
  550. package/starters/lokatech/themes/lokatech/layouts/index--services.tsx +237 -0
  551. package/starters/lokatech/themes/lokatech/layouts/index.tsx +96 -0
  552. package/starters/lokatech/themes/lokatech/layouts/industry.tsx +121 -0
  553. package/starters/lokatech/themes/lokatech/layouts/landing-page.tsx +14 -0
  554. package/starters/lokatech/themes/lokatech/layouts/page--about.tsx +158 -0
  555. package/starters/lokatech/themes/lokatech/layouts/page--careers.tsx +125 -0
  556. package/starters/lokatech/themes/lokatech/layouts/page--contact.tsx +235 -0
  557. package/starters/lokatech/themes/lokatech/layouts/page.tsx +45 -0
  558. package/starters/lokatech/themes/lokatech/layouts/service.tsx +235 -0
  559. package/starters/lokatech/themes/lokatech/partials/footer.tsx +109 -0
  560. package/starters/lokatech/themes/lokatech/partials/header.tsx +53 -0
  561. package/starters/lokatech/themes/lokatech/static/images/article-platform-engineering.jpg +0 -0
  562. package/starters/lokatech/themes/lokatech/static/images/barka-logo.png +0 -0
  563. package/starters/lokatech/themes/lokatech/static/images/case-study-banking-dashboard.jpg +0 -0
  564. package/starters/lokatech/themes/lokatech/static/images/case-study-banking.png +0 -0
  565. package/starters/lokatech/themes/lokatech/static/images/case-study-ecommerce-dashboard.jpg +0 -0
  566. package/starters/lokatech/themes/lokatech/static/images/case-study-healthcare-dashboard.jpg +0 -0
  567. package/starters/lokatech/themes/lokatech/static/images/case-study-healthcare.png +0 -0
  568. package/starters/lokatech/themes/lokatech/static/images/case-study-retail.png +0 -0
  569. package/starters/lokatech/themes/lokatech/static/images/hero-bg.png +0 -0
  570. package/starters/lokatech/themes/lokatech/static/images/lokatech-logo.png +0 -0
  571. package/starters/lokatech/themes/lokatech/static/images/office-warsaw.png +0 -0
  572. package/starters/lokatech/themes/lokatech/static/images/team-anna-kowalska.png +0 -0
  573. package/starters/lokatech/themes/lokatech/static/images/team-collaboration.jpg +0 -0
  574. package/starters/lokatech/themes/lokatech/static/images/team-jan-nowak.png +0 -0
  575. package/starters/lokatech/themes/lokatech/static/images/team-katarzyna-kaminska.png +0 -0
  576. package/starters/lokatech/themes/lokatech/static/images/team-maria-wisniewska.png +0 -0
  577. package/starters/lokatech/themes/lokatech/static/images/team-strategy-session.jpg +0 -0
  578. package/starters/lokatech/themes/lokatech/static/images/team-tomasz-lewandowski.png +0 -0
  579. package/starters/lokatech/themes/lokatech/static/style.css +495 -0
  580. package/starters/lokatech/themes/lokatech/theme.yaml +21 -0
  581. package/starters/lokatech/themes/starter/_types.ts +93 -0
  582. package/starters/lokatech/themes/starter/components/blog-listing/blog-listing.tsx +102 -0
  583. package/starters/lokatech/themes/starter/components/blog-listing/schema.yaml +21 -0
  584. package/starters/lokatech/themes/starter/components/columns/columns.tsx +101 -0
  585. package/starters/lokatech/themes/starter/components/columns/schema.yaml +23 -0
  586. package/starters/lokatech/themes/starter/components/counters/counters.css +13 -0
  587. package/starters/lokatech/themes/starter/components/counters/counters.tsx +81 -0
  588. package/starters/lokatech/themes/starter/components/counters/schema.yaml +23 -0
  589. package/starters/lokatech/themes/starter/components/cta/cta.tsx +57 -0
  590. package/starters/lokatech/themes/starter/components/cta/schema.yaml +30 -0
  591. package/starters/lokatech/themes/starter/components/faq/faq.tsx +77 -0
  592. package/starters/lokatech/themes/starter/components/faq/schema.yaml +20 -0
  593. package/starters/lokatech/themes/starter/components/features/features.tsx +82 -0
  594. package/starters/lokatech/themes/starter/components/features/schema.yaml +19 -0
  595. package/starters/lokatech/themes/starter/components/form/form.tsx +126 -0
  596. package/starters/lokatech/themes/starter/components/form/schema.yaml +18 -0
  597. package/starters/lokatech/themes/starter/components/gallery/gallery.tsx +85 -0
  598. package/starters/lokatech/themes/starter/components/gallery/schema.yaml +27 -0
  599. package/starters/lokatech/themes/starter/components/hero/hero.tsx +77 -0
  600. package/starters/lokatech/themes/starter/components/hero/schema.yaml +26 -0
  601. package/starters/lokatech/themes/starter/components/logo-slider/logo-slider.css +21 -0
  602. package/starters/lokatech/themes/starter/components/logo-slider/logo-slider.tsx +81 -0
  603. package/starters/lokatech/themes/starter/components/logo-slider/schema.yaml +23 -0
  604. package/starters/lokatech/themes/starter/components/pricing/pricing.tsx +141 -0
  605. package/starters/lokatech/themes/starter/components/pricing/schema.yaml +44 -0
  606. package/starters/lokatech/themes/starter/components/testimonials/schema.yaml +26 -0
  607. package/starters/lokatech/themes/starter/components/testimonials/testimonials.tsx +100 -0
  608. package/starters/lokatech/themes/starter/components/text/schema.yaml +12 -0
  609. package/starters/lokatech/themes/starter/components/text/text.tsx +62 -0
  610. package/starters/lokatech/themes/starter/components/text-with-image/schema.yaml +30 -0
  611. package/starters/lokatech/themes/starter/components/text-with-image/text-with-image.tsx +86 -0
  612. package/starters/lokatech/themes/starter/components/video/schema.yaml +19 -0
  613. package/starters/lokatech/themes/starter/components/video/video.tsx +98 -0
  614. package/starters/lokatech/themes/starter/layouts/article.tsx +42 -0
  615. package/starters/lokatech/themes/starter/layouts/base.tsx +92 -0
  616. package/starters/lokatech/themes/starter/layouts/landing-page.tsx +14 -0
  617. package/starters/lokatech/themes/starter/layouts/page.tsx +29 -0
  618. package/starters/lokatech/themes/starter/partials/footer.tsx +22 -0
  619. package/starters/lokatech/themes/starter/partials/header.tsx +32 -0
  620. package/starters/lokatech/themes/starter/static/style.css +125 -0
  621. package/starters/lokatech/themes/starter/theme.yaml +16 -0
@@ -0,0 +1,64 @@
1
+ ---
2
+ uuid: "ks-008"
3
+ title: "HR Consulting"
4
+ type: service
5
+ status: published
6
+ langcode: en
7
+ slug: hr-consulting
8
+ date: 2026-03-15
9
+ fields:
10
+ short_description: "Strategic workforce planning, compensation benchmarking, HR transformation, and organizational design. Data-driven advice from experienced HR practitioners."
11
+ icon: brain
12
+ hero_stats:
13
+ - value: "150+"
14
+ label: "Consulting engagements"
15
+ - value: "25%"
16
+ label: "Avg. turnover reduction"
17
+ - value: "50+"
18
+ label: "Industries covered"
19
+ challenges:
20
+ - "High employee turnover is draining budgets and institutional knowledge"
21
+ - "Compensation packages are out of sync with the market, causing offer rejections"
22
+ - "Organizational restructuring without clear data leads to talent loss and morale damage"
23
+ - "HR teams lack strategic influence and operate as administrative functions"
24
+ - "Workforce planning is reactive rather than proactive, creating skills gaps"
25
+ - "Employee engagement scores are declining but root causes are unclear"
26
+ process:
27
+ - title: "Diagnostic Assessment"
28
+ description: "We analyze your HR data, employee surveys, organizational structure, and market positioning. A comprehensive diagnostic identifies the root causes of workforce challenges."
29
+ - title: "Strategy Design"
30
+ description: "Based on diagnostics, we design a tailored HR strategy covering workforce planning, talent management, compensation, and organizational development."
31
+ - title: "Implementation Support"
32
+ description: "Our consultants work alongside your HR team to implement changes — from new compensation structures to performance management systems and change management programs."
33
+ - title: "Measurement & Refinement"
34
+ description: "We track KPIs — turnover rates, engagement scores, time-to-productivity — and refine the strategy based on real outcomes."
35
+ case_studies:
36
+ - title: "Full RPO Program"
37
+ result: "40% cost reduction"
38
+ url: "/case-studies/finance-rpo-program"
39
+ seo:
40
+ title: "HR Consulting Services — KadoServices"
41
+ description: "Strategic HR consulting in Poland. Workforce planning, compensation benchmarking, organizational design. 150+ engagements, 25% average turnover reduction."
42
+ ---
43
+
44
+ ## Beyond Recruitment: Strategic HR Partnership
45
+
46
+ Recruitment solves today's hiring problem. HR consulting solves the systemic issues that create hiring problems in the first place. KadoServices' consulting practice helps organizations build HR functions that attract, develop, and retain talent — reducing dependence on external recruitment over time.
47
+
48
+ Our consultants are not theorists. They are former HR directors, compensation specialists, and organizational psychologists who have built and run HR functions at companies across Poland. They bring practical, data-driven recommendations grounded in real-world experience.
49
+
50
+ ## What We Do
51
+
52
+ **Workforce Planning & Analytics.** We help companies forecast future talent needs based on business strategy, market trends, and workforce demographics. Our analytics identify flight risks, skills gaps, and succession vulnerabilities before they become crises.
53
+
54
+ **Compensation & Benefits Benchmarking.** Using our proprietary salary database — the largest in Poland with 500,000+ data points — we benchmark your compensation packages against the market. We identify where you're overpaying, where you're losing candidates, and how to optimize total rewards for retention.
55
+
56
+ **Organizational Design.** Mergers, rapid growth, and digital transformation all demand structural change. We design organizational structures that align with your strategy — reporting lines, spans of control, role definitions, and decision-making frameworks.
57
+
58
+ **Employee Engagement.** We deploy diagnostic surveys, conduct focus groups, and analyze engagement data to identify the root causes of dissatisfaction. Then we design targeted interventions — from manager training to career path programs — that measurably improve retention and productivity.
59
+
60
+ **HR Transformation.** For companies where HR is still primarily an administrative function, we design and implement the transition to a strategic partner model — including HR technology selection, process automation, and capability building.
61
+
62
+ ## Our Methodology
63
+
64
+ Every engagement starts with data. We don't prescribe solutions based on best practices alone — we diagnose your specific situation using quantitative analysis (HR metrics, financial data, market benchmarks) and qualitative research (interviews, focus groups, cultural assessment). Recommendations are prioritized by impact and feasibility, with clear implementation roadmaps and success metrics.
@@ -0,0 +1,78 @@
1
+ ---
2
+ uuid: "ks-006"
3
+ title: "Outsourcing & RPO"
4
+ type: service
5
+ status: published
6
+ langcode: en
7
+ slug: outsourcing-rpo
8
+ date: 2026-03-15
9
+ fields:
10
+ short_description: "End-to-end recruitment process outsourcing. We become your HR department — from sourcing and screening to onboarding and retention."
11
+ icon: briefcase
12
+ hero_stats:
13
+ - value: "40%"
14
+ label: "Average cost reduction"
15
+ - value: "35+"
16
+ label: "Active RPO programs"
17
+ - value: "99.2%"
18
+ label: "SLA compliance"
19
+ challenges:
20
+ - "Internal recruitment teams are overwhelmed and can't keep up with hiring volume"
21
+ - "Cost-per-hire is too high due to fragmented processes and multiple agency fees"
22
+ - "Inconsistent candidate experience damages your employer brand"
23
+ - "No centralized data or analytics on recruitment performance and pipeline health"
24
+ - "Compliance risks from unstructured interview processes and inconsistent documentation"
25
+ - "Scaling recruitment up or down with business cycles is slow and expensive"
26
+ process:
27
+ - title: "Discovery & Design"
28
+ description: "We audit your current recruitment processes, identify bottlenecks, and design an optimized RPO model. This includes technology stack, team structure, SLAs, and KPIs."
29
+ - title: "Transition & Setup"
30
+ description: "Our RPO team integrates with your HR systems, ATS, and employer brand. We train on your culture, values, and hiring standards. Typical transition: 4-6 weeks."
31
+ - title: "Operational Delivery"
32
+ description: "Our recruiters work as an extension of your team — sourcing, screening, coordinating interviews, and managing offers. All under your employer brand."
33
+ - title: "Analytics & Optimization"
34
+ description: "Monthly dashboards tracking time-to-fill, cost-per-hire, source effectiveness, and candidate satisfaction. Quarterly business reviews drive continuous improvement."
35
+ - title: "Scaling & Flexibility"
36
+ description: "RPO teams scale up for growth periods and down during slowdowns. You pay for what you use, not for idle capacity."
37
+ case_studies:
38
+ - title: "Full RPO Program"
39
+ result: "40% cost reduction"
40
+ url: "/case-studies/finance-rpo-program"
41
+ - title: "500 Hires in 3 Months"
42
+ result: "94% retention rate"
43
+ url: "/case-studies/manufacturing-mass-recruitment"
44
+ seo:
45
+ title: "Outsourcing & RPO Services — KadoServices"
46
+ description: "Recruitment Process Outsourcing (RPO) in Poland. 40% average cost reduction, 35+ active programs, 99.2% SLA compliance."
47
+ ---
48
+
49
+ ## What Is RPO?
50
+
51
+ Recruitment Process Outsourcing means transferring all or part of your recruitment function to a specialist partner. Unlike traditional staffing agencies that fill individual roles, an RPO provider takes ownership of your entire hiring process — from workforce planning and sourcing to onboarding and analytics.
52
+
53
+ KadoServices operates 35+ active RPO programs across Poland, managing recruitment for companies ranging from 200 to 10,000+ employees. Our clients choose RPO because it delivers better hires, faster fills, lower costs, and complete visibility into recruitment performance.
54
+
55
+ ## How It Works
56
+
57
+ Our RPO model is fully customizable. Some clients outsource their entire recruitment function. Others keep executive hiring in-house and outsource volume recruitment. The common thread is a dedicated KadoServices team that operates under your employer brand, uses your systems, and is accountable to your KPIs.
58
+
59
+ **Embedded teams.** Our recruiters sit in your offices (or work remotely integrated with your tools), attend your team meetings, and represent your employer brand to candidates. From the outside, they're indistinguishable from your internal HR team.
60
+
61
+ **Technology integration.** We work with your ATS (Workday, SAP SuccessFactors, Bullhorn, or others) and layer on our sourcing tools, assessment platforms, and analytics dashboards. No parallel systems, no data silos.
62
+
63
+ **Compliance built in.** Every process step is documented, auditable, and compliant with Polish labor law, GDPR, and your internal policies. Structured interviews, standardized scorecards, and diversity tracking are standard.
64
+
65
+ ## RPO vs. Traditional Recruitment
66
+
67
+ | Factor | Traditional Agency | KadoServices RPO |
68
+ |--------|-------------------|------------------|
69
+ | Cost model | Per-hire fee (15-25%) | Monthly management fee + variable |
70
+ | Integration | External, ad-hoc | Embedded in your team |
71
+ | Employer brand | Agency brand | Your brand |
72
+ | Data & analytics | Minimal | Full dashboards |
73
+ | Scalability | Linear cost increase | Elastic capacity |
74
+ | Process ownership | Fragmented | End-to-end |
75
+
76
+ ## Results You Can Expect
77
+
78
+ Our RPO clients typically see a 40% reduction in cost-per-hire within the first year, a 30% improvement in time-to-fill, and measurably higher candidate quality as assessed by hiring manager satisfaction scores. The compounding effect of process optimization, better sourcing, and data-driven decisions means results improve quarter over quarter.
@@ -0,0 +1,67 @@
1
+ ---
2
+ uuid: "ks-007"
3
+ title: "Outsourcing i RPO"
4
+ type: service
5
+ status: published
6
+ langcode: pl
7
+ slug: outsourcing-rpo
8
+ date: 2026-03-15
9
+ fields:
10
+ short_description: "Kompleksowy outsourcing procesów rekrutacyjnych. Stajemy się Twoim działem HR — od sourcingu i selekcji po onboarding i retencję."
11
+ icon: briefcase
12
+ hero_stats:
13
+ - value: "40%"
14
+ label: "Średnia redukcja kosztów"
15
+ - value: "35+"
16
+ label: "Aktywnych programów RPO"
17
+ - value: "99,2%"
18
+ label: "Zgodność z SLA"
19
+ challenges:
20
+ - "Wewnętrzne zespoły rekrutacyjne są przeciążone i nie nadążają z wolumenem zatrudnień"
21
+ - "Koszt zatrudnienia jest zbyt wysoki przez fragmentaryczne procesy i opłaty wielu agencji"
22
+ - "Niespójna ścieżka kandydata szkodzi Twojej marce pracodawcy"
23
+ - "Brak scentralizowanych danych i analityki dotyczącej wyników rekrutacji i kondycji pipeline'u"
24
+ - "Ryzyka compliance z powodu nieustrukturyzowanych rozmów kwalifikacyjnych i niespójnej dokumentacji"
25
+ - "Skalowanie rekrutacji w górę i w dół z cyklami biznesowymi jest wolne i kosztowne"
26
+ process:
27
+ - title: "Discovery i projektowanie"
28
+ description: "Audytujemy Twoje aktualne procesy rekrutacyjne, identyfikujemy wąskie gardła i projektujemy zoptymalizowany model RPO. Obejmuje to stos technologiczny, strukturę zespołu, SLA i KPI."
29
+ - title: "Tranzycja i wdrożenie"
30
+ description: "Nasz zespół RPO integruje się z Twoimi systemami HR, ATS i marką pracodawcy. Szkolimy się z Twojej kultury, wartości i standardów zatrudniania. Typowa tranzycja: 4-6 tygodni."
31
+ - title: "Realizacja operacyjna"
32
+ description: "Nasi rekruterzy pracują jako przedłużenie Twojego zespołu — sourcing, selekcja, koordynacja rozmów i zarządzanie ofertami. Wszystko pod Twoją marką pracodawcy."
33
+ - title: "Analityka i optymalizacja"
34
+ description: "Miesięczne dashboardy śledzące time-to-fill, cost-per-hire, efektywność źródeł i satysfakcję kandydatów. Kwartalne przeglądy biznesowe napędzają ciągłe doskonalenie."
35
+ - title: "Skalowanie i elastyczność"
36
+ description: "Zespoły RPO skalują się w górę w okresach wzrostu i w dół podczas spowolnień. Płacisz za to, czego używasz, nie za niewykorzystane moce."
37
+ case_studies:
38
+ - title: "Pełny program RPO"
39
+ result: "40% redukcja kosztów"
40
+ url: "/case-studies/finance-rpo-program"
41
+ - title: "500 zatrudnień w 3 miesiące"
42
+ result: "94% retencja"
43
+ url: "/case-studies/manufacturing-mass-recruitment"
44
+ seo:
45
+ title: "Outsourcing i RPO — KadoServices"
46
+ description: "Outsourcing procesów rekrutacyjnych (RPO) w Polsce. 40% średnia redukcja kosztów, 35+ aktywnych programów, 99,2% zgodność z SLA."
47
+ ---
48
+
49
+ ## Czym jest RPO?
50
+
51
+ Outsourcing procesów rekrutacyjnych oznacza przeniesienie całości lub części funkcji rekrutacyjnej do wyspecjalizowanego partnera. W przeciwieństwie do tradycyjnych agencji pracy, które obsadzają pojedyncze stanowiska, dostawca RPO przejmuje odpowiedzialność za cały proces zatrudniania — od planowania zatrudnienia i sourcingu po onboarding i analitykę.
52
+
53
+ KadoServices prowadzi ponad 35 aktywnych programów RPO w całej Polsce, zarządzając rekrutacją dla firm liczących od 200 do ponad 10 000 pracowników. Nasi klienci wybierają RPO, ponieważ zapewnia lepsze zatrudnienia, szybsze obsadzanie stanowisk, niższe koszty i pełną widoczność wyników rekrutacji.
54
+
55
+ ## Jak to działa
56
+
57
+ Nasz model RPO jest w pełni konfigurowalny. Niektórzy klienci outsourcują całą funkcję rekrutacyjną. Inni zatrzymują rekrutację kadry zarządzającej wewnętrznie i outsourcują rekrutację wolumenową. Wspólnym mianownikiem jest dedykowany zespół KadoServices, który działa pod Twoją marką pracodawcy, korzysta z Twoich systemów i jest rozliczany z Twoich KPI.
58
+
59
+ **Zespoły embedded.** Nasi rekruterzy siedzą w Twoich biurach (lub pracują zdalnie zintegrowani z Twoimi narzędziami), uczestniczą w spotkaniach zespołowych i reprezentują Twoją markę pracodawcy przed kandydatami. Z zewnątrz nie można ich odróżnić od wewnętrznego zespołu HR.
60
+
61
+ **Integracja technologiczna.** Pracujemy z Twoim ATS (Workday, SAP SuccessFactors, Bullhorn lub inne) i nakładamy nasze narzędzia sourcingowe, platformy oceny i dashboardy analityczne. Bez równoległych systemów, bez silosów danych.
62
+
63
+ **Compliance wbudowany.** Każdy krok procesu jest udokumentowany, audytowalny i zgodny z polskim prawem pracy, RODO i Twoimi wewnętrznymi politykami. Ustrukturyzowane rozmowy, standaryzowane karty ocen i śledzenie różnorodności to standard.
64
+
65
+ ## Wyniki, których możesz oczekiwać
66
+
67
+ Nasi klienci RPO typowo widzą 40% redukcję kosztu zatrudnienia w pierwszym roku, 30% poprawę czasu obsadzania stanowisk i mierzalnie wyższą jakość kandydatów ocenianą przez wskaźniki satysfakcji hiring managerów. Kumulujący się efekt optymalizacji procesów, lepszego sourcingu i decyzji opartych na danych oznacza, że wyniki poprawiają się kwartał po kwartale.
@@ -0,0 +1,66 @@
1
+ ---
2
+ uuid: "ks-010"
3
+ title: "Payroll & HR Administration"
4
+ type: service
5
+ status: published
6
+ langcode: en
7
+ slug: payroll-hr-admin
8
+ date: 2026-03-15
9
+ fields:
10
+ short_description: "Full payroll processing, employment contracts, HR documentation, and compliance management. Let us handle the administration so you can focus on your business."
11
+ icon: file-text
12
+ hero_stats:
13
+ - value: "8,000+"
14
+ label: "Payrolls processed monthly"
15
+ - value: "100%"
16
+ label: "Compliance record"
17
+ - value: "3 days"
18
+ label: "Payroll turnaround"
19
+ challenges:
20
+ - "Payroll errors cause employee dissatisfaction and compliance penalties"
21
+ - "Keeping up with frequent changes in Polish labor law and tax regulations"
22
+ - "HR administration consumes time that should be spent on strategic priorities"
23
+ - "Managing payroll for temporary, permanent, and contract workers requires different processes"
24
+ - "GDPR compliance for employee data is complex and risky if mishandled"
25
+ - "Audits from ZUS and tax authorities require meticulous documentation"
26
+ process:
27
+ - title: "Onboarding & Setup"
28
+ description: "We set up your company in our payroll system, configure tax and social contribution parameters, and migrate existing employee data. Typical setup: 2-3 weeks."
29
+ - title: "Monthly Payroll Processing"
30
+ description: "Gross-to-net calculations, tax deductions, ZUS contributions, PPK management, sick leave, overtime, and bonuses. Delivered by the 10th of each month."
31
+ - title: "Employment Administration"
32
+ description: "Employment contracts, annexes, termination documents, certificates of employment, and all HR documentation required by Polish labor law."
33
+ - title: "Reporting & Compliance"
34
+ description: "Monthly ZUS declarations, annual PIT submissions, GUS statistical reports, and PFRON declarations. Full audit trail for inspections."
35
+ - title: "Employee Self-Service"
36
+ description: "Online portal for employees to access payslips, tax documents, leave balances, and personal data updates."
37
+ case_studies:
38
+ - title: "1,200 Seasonal Workers"
39
+ result: "Full payroll management"
40
+ url: "/case-studies/retail-seasonal-staffing"
41
+ seo:
42
+ title: "Payroll & HR Administration Services — KadoServices"
43
+ description: "Payroll processing and HR administration in Poland. 8,000+ payrolls monthly, 100% compliance, 3-day turnaround."
44
+ ---
45
+
46
+ ## Focus on Your Business, Not Paperwork
47
+
48
+ Polish labor law is among the most complex in Europe. Frequent regulatory changes — from tax brackets and minimum wage adjustments to PPK pension scheme rules and remote work regulations — create a compliance minefield for employers. A single payroll error can result in ZUS penalties, employee grievances, and labor inspection findings.
49
+
50
+ KadoServices' payroll and HR administration team takes this burden off your shoulders. We process over 8,000 payrolls monthly for companies ranging from 10 to 2,000+ employees, maintaining a 100% compliance record across all regulatory audits.
51
+
52
+ ## What We Handle
53
+
54
+ **Payroll Processing.** Complete monthly payroll including gross-to-net calculations, income tax (PIT), social contributions (ZUS), PPK pension scheme deductions, sick leave pay (ZUS ZLA), overtime, bonuses, benefits in kind, and civil law contracts (umowa zlecenie, umowa o dzieło). We deliver payslips and bank transfer files by your deadline — typically the 10th of each month.
55
+
56
+ **Employment Contracts & HR Documentation.** We prepare and maintain all employment documentation required by Polish law — employment contracts, contract amendments, termination agreements and notices, certificates of employment (świadectwo pracy), employee records (akta osobowe), and workplace regulations (regulamin pracy).
57
+
58
+ **Statutory Reporting.** Monthly ZUS declarations (DRA, RCA, RSA), annual PIT-11 and PIT-4R submissions, GUS statistical reports, PFRON declarations for disability employment quotas, and BHP (health and safety) record-keeping.
59
+
60
+ **Leave & Absence Management.** Tracking and administration of annual leave entitlements, sick leave, maternity/paternity leave, parental leave, and special leave categories. Integration with ZUS e-ZLA electronic sick leave system.
61
+
62
+ **GDPR Compliance.** Employee data processing in full compliance with GDPR — data processing agreements, retention policies, access controls, and data subject rights management.
63
+
64
+ ## Why Outsource Payroll?
65
+
66
+ Companies that outsource payroll to KadoServices typically save 30-40% compared to maintaining an in-house payroll function, while eliminating compliance risk entirely. Our team stays current with every regulatory change, implements updates proactively, and maintains the documentation trail that inspectors expect. You get accurate, on-time payroll and the peace of mind that comes with professional compliance management.
@@ -0,0 +1,78 @@
1
+ ---
2
+ uuid: "ks-003"
3
+ title: "Permanent Recruitment"
4
+ type: service
5
+ status: published
6
+ langcode: en
7
+ slug: permanent-recruitment
8
+ date: 2026-03-15
9
+ fields:
10
+ short_description: "Find the right talent for long-term success. From C-suite executives to technical specialists — we deliver candidates who stay and perform."
11
+ icon: users
12
+ hero_stats:
13
+ - value: "8,500+"
14
+ label: "Permanent placements per year"
15
+ - value: "94%"
16
+ label: "Retention after 12 months"
17
+ - value: "21 days"
18
+ label: "Average time-to-fill"
19
+ challenges:
20
+ - "Critical positions remain unfilled for months, slowing down projects and revenue growth"
21
+ - "High turnover costs — replacing an employee costs 50-200% of their annual salary"
22
+ - "Internal HR teams lack the sourcing reach and market intelligence to find passive candidates"
23
+ - "Mismatched hires due to poor cultural fit assessment and rushed interview processes"
24
+ - "Competitive talent markets make it harder to attract top performers away from current employers"
25
+ - "Salary benchmarking gaps lead to offers that are rejected or below-market compensation packages"
26
+ process:
27
+ - title: "Intake & Job Profiling"
28
+ description: "We meet your hiring managers to understand the role, team dynamics, growth path, and cultural fit requirements. A detailed job profile ensures aligned expectations from day one."
29
+ - title: "Sourcing & Headhunting"
30
+ description: "Our recruiters search our 120,000+ candidate database, job boards, LinkedIn, and professional networks. For senior roles, we use direct headhunting and executive search methodologies."
31
+ - title: "Screening & Assessment"
32
+ description: "Competency-based interviews, technical assessments, reference checks, and personality profiling. Only pre-qualified candidates are presented to your team."
33
+ - title: "Interview Coordination"
34
+ description: "We manage the entire interview process — scheduling, feedback collection, and candidate communication. You focus on evaluating; we handle the logistics."
35
+ - title: "Offer & Onboarding Support"
36
+ description: "Salary negotiation, offer preparation, and onboarding support. We stay in touch with placed candidates for 12 months to ensure successful integration."
37
+ case_studies:
38
+ - title: "500 Hires in 3 Months"
39
+ result: "94% retention rate"
40
+ url: "/case-studies/manufacturing-mass-recruitment"
41
+ - title: "Full RPO Program"
42
+ result: "40% cost reduction"
43
+ url: "/case-studies/finance-rpo-program"
44
+ seo:
45
+ title: "Permanent Recruitment Services — KadoServices"
46
+ description: "Permanent recruitment and executive search in Poland. 8,500+ placements per year, 94% retention rate, 21-day average time-to-fill."
47
+ ---
48
+
49
+ ## The Challenge of Permanent Hiring
50
+
51
+ Finding the right permanent employee is one of the most consequential decisions a company makes. A great hire accelerates teams, lifts morale, and drives revenue. A bad hire costs months of lost productivity, damages team dynamics, and — according to the Polish HR Association — costs between 50% and 200% of the position's annual salary when you factor in recruitment, training, and replacement costs.
52
+
53
+ The challenge is compounded by Poland's increasingly competitive labor market. Unemployment sits at historic lows, skilled workers receive multiple offers simultaneously, and passive candidates — the best performers who aren't actively looking — won't respond to generic job postings. Companies need a partner with the reach, market intelligence, and assessment rigor to find and secure top talent before competitors do.
54
+
55
+ ## Our Approach
56
+
57
+ KadoServices has built Poland's largest staffing operation around a simple principle: quality over speed, but we deliver both. Our permanent recruitment process combines deep market knowledge with structured assessment methodologies to ensure every placement is a long-term fit.
58
+
59
+ **Sourcing that reaches passive candidates.** Our 200+ recruiters maintain active relationships with professionals across every major industry in Poland. When a new role opens, we don't just post a job ad — we tap into our network of 120,000+ pre-screened candidates, identify passive prospects through LinkedIn and industry events, and leverage employee referral programs.
60
+
61
+ **Assessment that predicts performance.** Every candidate goes through competency-based interviews, technical or functional assessments tailored to the role, structured reference checks, and — for senior positions — psychometric profiling. We assess not just skills but cultural fit, career motivation, and long-term growth potential.
62
+
63
+ **Market intelligence that informs your offer.** Our consultants provide real-time salary benchmarking, competitor hiring activity, and candidate availability data so you can craft offers that attract top talent without overpaying.
64
+
65
+ ## Industries We Serve
66
+
67
+ Our permanent recruitment teams specialize across Poland's key sectors:
68
+
69
+ - **Manufacturing & Automotive** — Production managers, quality engineers, lean specialists, plant directors
70
+ - **Logistics & Supply Chain** — Warehouse managers, transport coordinators, supply chain directors
71
+ - **IT & Technology** — Software developers, DevOps engineers, IT managers, CTOs
72
+ - **Finance & Shared Services** — Financial controllers, accountants, audit managers, SSC directors
73
+ - **Healthcare** — Physicians, nurses, hospital administrators, pharmaceutical specialists
74
+ - **Retail & FMCG** — Regional managers, category managers, store directors
75
+
76
+ ## Why Companies Choose KadoServices
77
+
78
+ With 12 offices across Poland and over 15 years of recruitment experience, KadoServices offers unmatched national coverage and local market expertise. Our 94% 12-month retention rate — significantly above the industry average of 78% — reflects the quality of our matching process. We back every permanent placement with a guarantee period: if the candidate leaves within the agreed timeframe, we replace them at no additional cost.
@@ -0,0 +1,78 @@
1
+ ---
2
+ uuid: "ks-004"
3
+ title: "Rekrutacja stała"
4
+ type: service
5
+ status: published
6
+ langcode: pl
7
+ slug: permanent-recruitment
8
+ date: 2026-03-15
9
+ fields:
10
+ short_description: "Znajdź odpowiednie talenty na długoterminowy sukces. Od kadry zarządzającej po specjalistów technicznych — dostarczamy kandydatów, którzy zostają i osiągają wyniki."
11
+ icon: users
12
+ hero_stats:
13
+ - value: "8500+"
14
+ label: "Zatrudnień stałych rocznie"
15
+ - value: "94%"
16
+ label: "Retencja po 12 miesiącach"
17
+ - value: "21 dni"
18
+ label: "Średni czas obsadzenia"
19
+ challenges:
20
+ - "Kluczowe stanowiska pozostają nieobsadzone miesiącami, spowalniając projekty i wzrost przychodów"
21
+ - "Wysokie koszty rotacji — zastąpienie pracownika kosztuje 50-200% jego rocznego wynagrodzenia"
22
+ - "Wewnętrzne działy HR nie mają wystarczającego zasięgu sourcingu i wiedzy rynkowej, by dotrzeć do kandydatów pasywnych"
23
+ - "Nieudane zatrudnienia z powodu słabej oceny dopasowania kulturowego i pośpiesznych procesów rekrutacyjnych"
24
+ - "Konkurencyjne rynki talentów utrudniają przyciąganie najlepszych pracowników od obecnych pracodawców"
25
+ - "Braki w benchmarkingu wynagrodzeń prowadzą do odrzucanych ofert lub pakietów poniżej rynku"
26
+ process:
27
+ - title: "Intake i profil stanowiska"
28
+ description: "Spotykamy się z Twoimi hiring managerami, aby zrozumieć rolę, dynamikę zespołu, ścieżkę rozwoju i wymagania dopasowania kulturowego. Szczegółowy profil stanowiska zapewnia zgodność oczekiwań od pierwszego dnia."
29
+ - title: "Sourcing i headhunting"
30
+ description: "Nasi rekruterzy przeszukują naszą bazę 120 000+ kandydatów, portale pracy, LinkedIn i sieci profesjonalne. Dla stanowisk seniorskich stosujemy direct headhunting i metodologie executive search."
31
+ - title: "Selekcja i ocena"
32
+ description: "Wywiady kompetencyjne, testy techniczne, sprawdzenie referencji i profilowanie osobowości. Tylko wstępnie zweryfikowani kandydaci są prezentowani Twojemu zespołowi."
33
+ - title: "Koordynacja rozmów"
34
+ description: "Zarządzamy całym procesem rozmów kwalifikacyjnych — planowanie, zbieranie feedbacku i komunikacja z kandydatami. Ty skupiasz się na ocenie; my zajmujemy się logistyką."
35
+ - title: "Oferta i wsparcie onboardingu"
36
+ description: "Negocjacje wynagrodzeń, przygotowanie oferty i wsparcie onboardingu. Pozostajemy w kontakcie z zatrudnionymi kandydatami przez 12 miesięcy, aby zapewnić udaną integrację."
37
+ case_studies:
38
+ - title: "500 zatrudnień w 3 miesiące"
39
+ result: "94% wskaźnik retencji"
40
+ url: "/case-studies/manufacturing-mass-recruitment"
41
+ - title: "Pełny program RPO"
42
+ result: "40% redukcja kosztów"
43
+ url: "/case-studies/finance-rpo-program"
44
+ seo:
45
+ title: "Rekrutacja stała — KadoServices"
46
+ description: "Rekrutacja stała i executive search w Polsce. Ponad 8500 zatrudnień rocznie, 94% retencja, średni czas obsadzenia 21 dni."
47
+ ---
48
+
49
+ ## Wyzwanie rekrutacji stałej
50
+
51
+ Znalezienie odpowiedniego stałego pracownika to jedna z najważniejszych decyzji, jakie podejmuje firma. Świetne zatrudnienie przyspiesza zespoły, podnosi morale i napędza przychody. Złe zatrudnienie kosztuje miesiące utraconej produktywności, niszczy dynamikę zespołu i — według Polskiego Stowarzyszenia HR — kosztuje od 50% do 200% rocznego wynagrodzenia na danym stanowisku, gdy uwzględnimy rekrutację, szkolenie i zastępstwo.
52
+
53
+ Wyzwanie potęguje coraz bardziej konkurencyjny rynek pracy w Polsce. Bezrobocie jest na historycznie niskim poziomie, wykwalifikowani pracownicy otrzymują jednocześnie wiele ofert, a kandydaci pasywni — najlepsi performerzy, którzy nie szukają aktywnie pracy — nie odpowiadają na generyczne ogłoszenia. Firmy potrzebują partnera z zasięgiem, wiedzą rynkową i rygorystyczną oceną, aby znaleźć i zabezpieczyć najlepsze talenty, zanim zrobi to konkurencja.
54
+
55
+ ## Nasze podejście
56
+
57
+ KadoServices zbudowało największą operację rekrutacyjną w Polsce w oparciu o prostą zasadę: jakość ponad szybkość, ale dostarczamy jedno i drugie. Nasz proces rekrutacji stałej łączy głęboką wiedzę rynkową ze strukturalnymi metodologiami oceny, aby zapewnić, że każde zatrudnienie jest długoterminowym dopasowaniem.
58
+
59
+ **Sourcing docierający do kandydatów pasywnych.** Naszych 200+ rekruterów utrzymuje aktywne relacje z profesjonalistami w każdej kluczowej branży w Polsce. Gdy otwiera się nowa rola, nie publikujemy po prostu ogłoszenia — korzystamy z naszej sieci 120 000+ wstępnie zweryfikowanych kandydatów, identyfikujemy pasywnych kandydatów przez LinkedIn i wydarzenia branżowe oraz wykorzystujemy programy poleceń pracowniczych.
60
+
61
+ **Ocena przewidująca wyniki.** Każdy kandydat przechodzi wywiady kompetencyjne, testy techniczne lub funkcjonalne dopasowane do roli, strukturalne sprawdzenie referencji i — w przypadku stanowisk seniorskich — profilowanie psychometryczne. Oceniamy nie tylko kompetencje, ale dopasowanie kulturowe, motywację kariery i potencjał długoterminowego rozwoju.
62
+
63
+ **Wiedza rynkowa wspierająca Twoją ofertę.** Nasi konsultanci dostarczają dane o benchmarkingu wynagrodzeń w czasie rzeczywistym, aktywności rekrutacyjnej konkurencji i dostępności kandydatów, abyś mógł tworzyć oferty przyciągające najlepsze talenty bez przepłacania.
64
+
65
+ ## Branże, które obsługujemy
66
+
67
+ Nasze zespoły rekrutacji stałej specjalizują się w kluczowych sektorach Polski:
68
+
69
+ - **Produkcja i motoryzacja** — Kierownicy produkcji, inżynierowie jakości, specjaliści lean, dyrektorzy zakładów
70
+ - **Logistyka i łańcuch dostaw** — Kierownicy magazynów, koordynatorzy transportu, dyrektorzy łańcucha dostaw
71
+ - **IT i technologie** — Programiści, inżynierowie DevOps, kierownicy IT, CTO
72
+ - **Finanse i centra usług wspólnych** — Kontrolerzy finansowi, księgowi, kierownicy audytu, dyrektorzy SSC
73
+ - **Ochrona zdrowia** — Lekarze, pielęgniarki, administratorzy szpitali, specjaliści farmaceutyczni
74
+ - **Handel i FMCG** — Kierownicy regionalni, category managerowie, dyrektorzy sklepów
75
+
76
+ ## Dlaczego firmy wybierają KadoServices
77
+
78
+ Z 12 biurami w całej Polsce i ponad 15-letnim doświadczeniem rekrutacyjnym, KadoServices oferuje niezrównany zasięg ogólnopolski i lokalną ekspertyzę rynkową. Nasz 94% wskaźnik retencji po 12 miesiącach — znacząco powyżej średniej branżowej 78% — odzwierciedla jakość naszego procesu dopasowania. Każde stałe zatrudnienie objęte jest okresem gwarancyjnym: jeśli kandydat odejdzie w uzgodnionym terminie, zastępujemy go bez dodatkowych kosztów.
@@ -0,0 +1,78 @@
1
+ ---
2
+ uuid: "ks-005"
3
+ title: "Temporary Staffing & Leasing"
4
+ type: service
5
+ status: published
6
+ langcode: en
7
+ slug: temporary-staffing
8
+ date: 2026-03-15
9
+ fields:
10
+ short_description: "Flexible workforce solutions for seasonal peaks, project-based needs, and rapid scaling. From 1 worker to 1,000+ — deployed within days."
11
+ icon: clock
12
+ hero_stats:
13
+ - value: "6,500+"
14
+ label: "Temporary workers on assignment"
15
+ - value: "5 days"
16
+ label: "Average time-to-fill"
17
+ - value: "98%"
18
+ label: "Fill rate"
19
+ challenges:
20
+ - "Seasonal demand spikes require rapid scaling without long-term employment commitments"
21
+ - "Production deadlines at risk because you can't hire fast enough through traditional channels"
22
+ - "Administrative burden of managing payroll, contracts, and compliance for short-term workers"
23
+ - "Unexpected absences and turnover leave critical shifts unstaffed"
24
+ - "Legal complexity of temporary employment regulations in Poland and the EU"
25
+ - "Quality concerns — temporary workers often lack proper vetting and onboarding"
26
+ process:
27
+ - title: "Needs Assessment"
28
+ description: "We analyze your workforce requirements — volume, skills, shift patterns, duration, and site conditions. A dedicated account manager designs the optimal staffing model."
29
+ - title: "Candidate Selection"
30
+ description: "Pre-screened candidates from our active pool are matched to your requirements. We verify qualifications, work permits, health certifications, and conduct safety briefings."
31
+ - title: "Deployment & Onboarding"
32
+ description: "Workers arrive on-site ready to work. We handle employment contracts, payroll registration, PPE requirements, and site-specific safety inductions."
33
+ - title: "Ongoing Management"
34
+ description: "Our on-site coordinators manage attendance, performance, and replacements. Real-time reporting gives you full visibility into your temporary workforce."
35
+ - title: "Payroll & Compliance"
36
+ description: "KadoServices is the legal employer. We handle payroll, taxes, social contributions, holiday pay, and full compliance with Polish labor law."
37
+ case_studies:
38
+ - title: "1,200 Seasonal Workers"
39
+ result: "98% fill rate"
40
+ url: "/case-studies/retail-seasonal-staffing"
41
+ - title: "500 Hires in 3 Months"
42
+ result: "Delivered on time"
43
+ url: "/case-studies/manufacturing-mass-recruitment"
44
+ seo:
45
+ title: "Temporary Staffing & Employee Leasing — KadoServices"
46
+ description: "Temporary staffing and employee leasing in Poland. 6,500+ workers on assignment, 5-day average deployment, 98% fill rate."
47
+ ---
48
+
49
+ ## Why Temporary Staffing?
50
+
51
+ Poland's economy runs on flexibility. Manufacturing plants ramp up for new product launches. Retail chains triple their workforce before Christmas. Logistics companies surge capacity during e-commerce peaks. In every case, businesses need qualified workers fast — without the time, cost, and risk of permanent hiring.
52
+
53
+ Temporary staffing gives you the workforce agility to match headcount to demand in real time. KadoServices manages over 6,500 temporary workers on assignment at any given time, making us one of Poland's largest temporary staffing providers. Whether you need 5 warehouse operatives next week or 500 production workers next month, we have the scale, processes, and talent pool to deliver.
54
+
55
+ ## Our Model
56
+
57
+ As the legal employer of all temporary workers, KadoServices takes on the full administrative and compliance burden:
58
+
59
+ **Employment contracts** — We issue compliant temporary employment agreements under Polish labor law, including fixed-term, task-based, and agency work contracts.
60
+
61
+ **Payroll processing** — Monthly payroll for all temporary workers, including gross-to-net calculations, tax deductions, ZUS social contributions, and holiday pay accruals.
62
+
63
+ **Work permits & legalization** — For international workers, we handle work permit applications, residence permits, and legalization procedures with voivodeship offices.
64
+
65
+ **Health & safety** — Pre-employment medical examinations, safety training, PPE provision, and workplace risk assessments as required by the Labor Code.
66
+
67
+ **On-site coordination** — For large deployments (50+ workers), we station on-site coordinators who manage attendance, shift scheduling, performance monitoring, and real-time replacements.
68
+
69
+ ## Flexible Engagement Models
70
+
71
+ - **Classic temporary staffing** — Workers employed by KadoServices, assigned to your site for a defined period
72
+ - **Employee leasing** — Long-term assignments (6-18 months) with option to convert to permanent employment
73
+ - **Payroll outsourcing** — You recruit, we employ. Full payroll and HR administration for your selected candidates
74
+ - **Managed services** — End-to-end workforce management for entire production lines or warehouses
75
+
76
+ ## Speed of Delivery
77
+
78
+ Our average time-to-fill for temporary roles is 5 business days — from briefing to workers on-site. For urgent requests, we can deploy candidates within 24-48 hours from our active pool. This speed is possible because we maintain a continuously refreshed database of pre-screened, available candidates across all major cities in Poland.
@@ -0,0 +1,26 @@
1
+ ---
2
+ uuid: "ks-027"
3
+ title: "Anna Kowalska"
4
+ type: person
5
+ status: published
6
+ langcode: en
7
+ slug: anna-kowalska
8
+ date: 2026-03-15
9
+ fields:
10
+ role: "Chief Executive Officer"
11
+ department: "Management"
12
+ linkedin: "https://linkedin.com/in/example"
13
+ photo: "https://placehold.co/400x400/14101E/F59E0B?text=Anna+Kowalska"
14
+ quote: "People are the most important asset of any organization. Our mission is to help companies find the right people — and help people find the right companies."
15
+ seo:
16
+ title: "Anna Kowalska — CEO, KadoServices"
17
+ description: "Anna Kowalska, CEO and founder of KadoServices. 20+ years in staffing and HR, building Poland's leading workforce solutions company."
18
+ ---
19
+
20
+ Anna Kowalska founded KadoServices in 2009 with a clear vision: to build a staffing company that treats both clients and candidates with equal respect and delivers measurable results. Starting from a single office in Warsaw with three recruiters, she has grown the company into one of Poland's largest independent staffing agencies, with 200+ recruiters across 12 offices and over 15,000 placements per year.
21
+
22
+ Before founding KadoServices, Anna spent 12 years at two multinational staffing firms — first at Adecco, where she rose from recruitment consultant to branch manager, and then at Randstad, where she served as Regional Director for Central Poland. These experiences gave her deep insight into the staffing industry's strengths and weaknesses, and a conviction that a Polish-owned agency could compete with multinationals by combining local market knowledge with international service standards.
23
+
24
+ Anna holds a Master's degree in Management from the Warsaw School of Economics (SGH) and has completed executive education programs at INSEAD and London Business School. She serves on the board of the Polish Staffing Forum (Polskie Forum HR) and is a regular speaker at HR conferences across Central Europe. In 2024, she was named among the Top 50 Women Leaders in Polish Business by Forbes Poland.
25
+
26
+ Under Anna's leadership, KadoServices has achieved a 98% client retention rate, been certified as a Great Place to Work for five consecutive years, and expanded into HR consulting, RPO, and employer branding services beyond its core staffing business.
@@ -0,0 +1,26 @@
1
+ ---
2
+ uuid: "ks-030"
3
+ title: "Jan Lewandowski"
4
+ type: person
5
+ status: published
6
+ langcode: en
7
+ slug: jan-lewandowski
8
+ date: 2026-03-15
9
+ fields:
10
+ role: "VP Sales"
11
+ department: "Sales"
12
+ linkedin: "https://linkedin.com/in/example"
13
+ photo: "https://placehold.co/400x400/14101E/F59E0B?text=Jan+Lewandowski"
14
+ quote: "In staffing, the best sales is not selling at all — it's understanding a client's business so deeply that you become their trusted workforce advisor."
15
+ seo:
16
+ title: "Jan Lewandowski — VP Sales, KadoServices"
17
+ description: "Jan Lewandowski, VP Sales at KadoServices. Responsible for business development and client relationships across Poland's key industries."
18
+ ---
19
+
20
+ Jan Lewandowski leads KadoServices' commercial function, overseeing business development, key account management, and strategic partnerships. He manages a team of 25 sales and account management professionals responsible for building and maintaining relationships with the company's 500+ active clients.
21
+
22
+ Jan joined KadoServices in 2014 as a Key Account Manager, bringing with him a decade of B2B sales experience from the staffing and outsourcing industry. Prior to KadoServices, he held sales leadership roles at Work Service (Poland's then-largest staffing agency) and Trenkwalder, where he specialized in large-volume temporary staffing contracts for manufacturing and logistics clients.
23
+
24
+ What distinguishes Jan's approach to staffing sales is his deep focus on understanding client operations before proposing solutions. He regularly visits client production sites, warehouses, and offices — not to make a sales pitch, but to understand how work gets done, where the staffing pain points are, and how KadoServices can add measurable value. This consultative approach has helped build long-term client relationships — KadoServices' top 20 clients have been with the company for an average of 7 years.
25
+
26
+ Jan holds a degree in Economics from the University of Warsaw and has completed commercial leadership programs at Harvard Business School Online and the Warsaw School of Economics. He is a member of the Confederation of Employers of the Republic of Poland (Konfederacja Lewiatan) and regularly participates in industry roundtables on workforce policy and labor market regulation.
@@ -0,0 +1,26 @@
1
+ ---
2
+ uuid: "ks-031"
3
+ title: "Katarzyna Zielińska"
4
+ type: person
5
+ status: published
6
+ langcode: en
7
+ slug: katarzyna-zielinska
8
+ date: 2026-03-15
9
+ fields:
10
+ role: "Head of HR Consulting"
11
+ department: "Consulting"
12
+ linkedin: "https://linkedin.com/in/example"
13
+ photo: "https://placehold.co/400x400/14101E/F59E0B?text=Katarzyna+Zielinska"
14
+ quote: "The best HR strategy is one that aligns people decisions with business outcomes. Everything else is just administration."
15
+ seo:
16
+ title: "Katarzyna Zielińska — Head of HR Consulting, KadoServices"
17
+ description: "Katarzyna Zielińska, Head of HR Consulting at KadoServices. Former HR Director with 15 years of experience in workforce strategy and organizational development."
18
+ ---
19
+
20
+ Katarzyna Zielińska leads KadoServices' HR consulting practice, helping companies build strategic HR functions that attract, develop, and retain talent. Her team of 8 consultants delivers workforce planning, compensation benchmarking, organizational design, and employee engagement programs for clients across all industries.
21
+
22
+ Before joining KadoServices in 2020, Katarzyna spent 15 years in corporate HR leadership roles. She served as HR Director at PZU (Poland's largest insurance group), where she managed a team of 40 HR professionals supporting 10,000+ employees. Before PZU, she held HR business partner and talent management roles at Procter & Gamble and British American Tobacco, giving her first-hand experience of HR practices at both multinational corporations and large Polish enterprises.
23
+
24
+ Katarzyna's transition from corporate HR to consulting was driven by a desire to help a broader range of companies benefit from the strategic HR practices she had implemented throughout her career. At KadoServices, she has built the consulting practice from a one-person operation to a team serving 150+ clients, with engagements ranging from single-day compensation benchmarking workshops to year-long HR transformation programs.
25
+
26
+ Katarzyna holds a Master's degree in Sociology from the University of Warsaw and a postgraduate diploma in Human Resource Management from the Warsaw School of Economics (SGH). She is a certified SHRM Senior Certified Professional (SHRM-SCP) and holds credentials in Hay Group job evaluation methodology and Mercer compensation benchmarking. She regularly publishes articles on HR strategy in Personel Plus and HR Business Partner magazines.