@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,50 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Careers at LokaTech"
|
|
3
|
+
type: page
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: careers
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
subtitle: "Build your career at one of Europe's fastest-growing technology companies"
|
|
10
|
+
seo:
|
|
11
|
+
title: "Careers at LokaTech Solutions — Join Our Engineering Team"
|
|
12
|
+
description: "Join 800+ engineers at LokaTech. Remote-friendly, learning budget, conferences, health insurance, stock options. Open positions across Europe."
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Why LokaTech?
|
|
16
|
+
|
|
17
|
+
We're engineers who build for other engineers. That means we take engineering culture seriously — not as a recruiting tagline, but as the operating system of our company. When you join LokaTech, you join a team that values technical depth, honest feedback, and the kind of challenging work that makes you better at your craft.
|
|
18
|
+
|
|
19
|
+
## What We Offer
|
|
20
|
+
|
|
21
|
+
**Learning & Growth** — Every engineer receives a €3,000 annual learning budget for courses, certifications, and books. We sponsor conference attendance (including travel) and run internal tech talks every two weeks. Senior engineers mentor juniors through a structured program, and career paths are transparent: you'll know exactly what's expected for your next promotion.
|
|
22
|
+
|
|
23
|
+
**Flexibility** — Remote-first culture with optional office access in all six locations. Flexible working hours — we measure outcomes, not hours logged. Need to pick up your kids at 3 PM and finish work in the evening? No questions asked.
|
|
24
|
+
|
|
25
|
+
**Compensation & Benefits** — Competitive salaries benchmarked quarterly against market data. Performance bonuses tied to project outcomes. Equity participation program for senior roles. Private health insurance for you and your family. Pension contributions above the statutory minimum.
|
|
26
|
+
|
|
27
|
+
**Work That Matters** — We work with some of Europe's largest enterprises on problems that are genuinely difficult. Core banking modernization, clinical trial data platforms, smart grid infrastructure — this isn't CRUD app development. You'll work with senior engineers, modern technology stacks, and clients who value quality.
|
|
28
|
+
|
|
29
|
+
**Community** — Annual company-wide hackathon. Open source contribution days (one Friday per month). Regional team events and an annual offsite that's actually fun, not mandatory fun.
|
|
30
|
+
|
|
31
|
+
## Our Culture
|
|
32
|
+
|
|
33
|
+
We believe the best teams are built on psychological safety, technical rigor, and shared ownership. Code reviews are learning opportunities. Retrospectives are honest. Architecture decisions are documented and debatable. We don't have a "10x engineer" culture — we have a culture where everyone is empowered to do great work and supported when things get hard.
|
|
34
|
+
|
|
35
|
+
Diversity matters to us. We actively work to build teams that reflect the diversity of the communities we operate in, and we measure our progress transparently.
|
|
36
|
+
|
|
37
|
+
## Hiring Process
|
|
38
|
+
|
|
39
|
+
Our process is designed to be respectful of your time while giving us enough signal to make good decisions:
|
|
40
|
+
|
|
41
|
+
1. **Apply** — Submit your CV and a brief cover letter. We read every application personally — no AI screening.
|
|
42
|
+
2. **Screening Call** (30 min) — A conversation with a recruiter about your experience, interests, and what you're looking for. We'll answer your questions about LokaTech honestly.
|
|
43
|
+
3. **Technical Interview** (90 min) — A live coding or architecture session with two senior engineers. No whiteboard algorithms — we use realistic problems from our actual project work. You can use your own IDE, Google things, and ask clarifying questions, just like real engineering.
|
|
44
|
+
4. **Offer** — If it's a match, you'll receive an offer within 48 hours. We move fast because good engineers don't wait.
|
|
45
|
+
|
|
46
|
+
We aim to complete the process within 10 business days from application to offer.
|
|
47
|
+
|
|
48
|
+
## Get in Touch
|
|
49
|
+
|
|
50
|
+
Don't see a perfect role? Send your CV to [careers@lokatech.eu](mailto:careers@lokatech.eu) with a note about what you're looking for. We're always interested in exceptional engineers.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Contact Us"
|
|
3
|
+
type: page
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: contact
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
subtitle: "Let's discuss how we can help"
|
|
10
|
+
seo:
|
|
11
|
+
title: "Contact LokaTech Solutions — Get in Touch"
|
|
12
|
+
description: "Contact LokaTech Solutions. Offices in Warsaw, Kraków, Wrocław, Berlin, and London. Enterprise IT services inquiry."
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Get in Touch
|
|
16
|
+
|
|
17
|
+
Whether you're exploring a new project, looking for engineering talent, or want to learn more about our services — we'd love to hear from you.
|
|
18
|
+
|
|
19
|
+
**General Inquiries**
|
|
20
|
+
[hello@lokatech.eu](mailto:hello@lokatech.eu)
|
|
21
|
+
|
|
22
|
+
**Sales & Partnerships**
|
|
23
|
+
[sales@lokatech.eu](mailto:sales@lokatech.eu)
|
|
24
|
+
+48 22 123 4567
|
|
25
|
+
|
|
26
|
+
**Careers**
|
|
27
|
+
[careers@lokatech.eu](mailto:careers@lokatech.eu)
|
|
28
|
+
|
|
29
|
+
## Our Offices
|
|
30
|
+
|
|
31
|
+
**Warsaw — Headquarters**
|
|
32
|
+
ul. Marszałkowska 100, 00-026 Warsaw, Poland
|
|
33
|
+
|
|
34
|
+
**Kraków**
|
|
35
|
+
ul. Pawia 5, 31-154 Kraków, Poland
|
|
36
|
+
|
|
37
|
+
**Wrocław**
|
|
38
|
+
ul. Świdnicka 40, 50-024 Wrocław, Poland
|
|
39
|
+
|
|
40
|
+
**Berlin**
|
|
41
|
+
Friedrichstraße 123, 10117 Berlin, Germany
|
|
42
|
+
|
|
43
|
+
**London**
|
|
44
|
+
1 Canada Square, Canary Wharf, London E14 5AB, United Kingdom
|
|
45
|
+
|
|
46
|
+
## Business Hours
|
|
47
|
+
|
|
48
|
+
Monday – Friday: 9:00 – 18:00 CET
|
|
49
|
+
Saturday – Sunday: Closed
|
|
50
|
+
|
|
51
|
+
For urgent production support inquiries, our 24/7 operations team is available at [ops@lokatech.eu](mailto:ops@lokatech.eu).
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Kontakt"
|
|
3
|
+
type: page
|
|
4
|
+
status: published
|
|
5
|
+
langcode: pl
|
|
6
|
+
slug: contact
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
subtitle: "Porozmawiajmy o tym, jak możemy pomóc"
|
|
10
|
+
seo:
|
|
11
|
+
title: "Kontakt — LokaTech Solutions"
|
|
12
|
+
description: "Skontaktuj się z LokaTech Solutions. Biura w Warszawie, Krakowie, Wrocławiu, Berlinie i Londynie. Zapytania o usługi IT dla przedsiębiorstw."
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Skontaktuj się z nami
|
|
16
|
+
|
|
17
|
+
Niezależnie od tego, czy planujesz nowy projekt, szukasz talentów inżynierskich, czy chcesz dowiedzieć się więcej o naszych usługach — chętnie porozmawiamy.
|
|
18
|
+
|
|
19
|
+
**Zapytania ogólne**
|
|
20
|
+
[hello@lokatech.eu](mailto:hello@lokatech.eu)
|
|
21
|
+
|
|
22
|
+
**Sprzedaż i partnerstwa**
|
|
23
|
+
[sales@lokatech.eu](mailto:sales@lokatech.eu)
|
|
24
|
+
+48 22 123 4567
|
|
25
|
+
|
|
26
|
+
**Kariera**
|
|
27
|
+
[careers@lokatech.eu](mailto:careers@lokatech.eu)
|
|
28
|
+
|
|
29
|
+
## Nasze biura
|
|
30
|
+
|
|
31
|
+
**Warszawa — Siedziba główna**
|
|
32
|
+
ul. Marszałkowska 100, 00-026 Warszawa, Polska
|
|
33
|
+
|
|
34
|
+
**Kraków**
|
|
35
|
+
ul. Pawia 5, 31-154 Kraków, Polska
|
|
36
|
+
|
|
37
|
+
**Wrocław**
|
|
38
|
+
ul. Świdnicka 40, 50-024 Wrocław, Polska
|
|
39
|
+
|
|
40
|
+
**Berlin**
|
|
41
|
+
Friedrichstraße 123, 10117 Berlin, Niemcy
|
|
42
|
+
|
|
43
|
+
**Londyn**
|
|
44
|
+
1 Canada Square, Canary Wharf, London E14 5AB, Wielka Brytania
|
|
45
|
+
|
|
46
|
+
## Godziny pracy
|
|
47
|
+
|
|
48
|
+
Poniedziałek – Piątek: 9:00 – 18:00 CET
|
|
49
|
+
Sobota – Niedziela: Zamknięte
|
|
50
|
+
|
|
51
|
+
W pilnych sprawach dotyczących wsparcia produkcyjnego nasz zespół operacyjny jest dostępny 24/7 pod adresem [ops@lokatech.eu](mailto:ops@lokatech.eu).
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Security & Compliance"
|
|
3
|
+
type: page
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: security-compliance
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
subtitle: "Enterprise-grade security is in our DNA"
|
|
10
|
+
seo:
|
|
11
|
+
title: "Security & Compliance — LokaTech Solutions"
|
|
12
|
+
description: "ISO 27001, SOC 2 Type II certified. GDPR compliant, EU data residency. Enterprise security practices and compliance frameworks."
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Our Commitment to Security
|
|
16
|
+
|
|
17
|
+
Security isn't a feature we bolt on — it's embedded in how we work, from the first line of code to production deployment. Every LokaTech project follows secure development practices by default, and our internal operations are held to the same standards we implement for our clients.
|
|
18
|
+
|
|
19
|
+
## Certifications
|
|
20
|
+
|
|
21
|
+
**ISO 27001:2022** — Our information security management system covers all offices, development processes, and client project delivery. Certified since 2016, re-audited annually by an independent third-party assessor.
|
|
22
|
+
|
|
23
|
+
**SOC 2 Type II** — Our controls for security, availability, and confidentiality have been independently verified through a 12-month observation period. Reports are available to clients and prospects under NDA.
|
|
24
|
+
|
|
25
|
+
**AWS Advanced Partner** — Our cloud engineering team holds AWS Professional certifications across Solutions Architecture, DevOps Engineering, and Security Specialty.
|
|
26
|
+
|
|
27
|
+
**Microsoft Gold Partner** — Certified across Azure, .NET, and Dynamics 365 competencies.
|
|
28
|
+
|
|
29
|
+
## GDPR Compliance
|
|
30
|
+
|
|
31
|
+
As an EU-headquartered company, GDPR compliance is foundational to our operations:
|
|
32
|
+
|
|
33
|
+
- **Data Processing Agreements** — Executed with every client before project kickoff, clearly defining data categories, processing purposes, and retention periods
|
|
34
|
+
- **Data Protection Officer** — Dedicated DPO overseeing privacy practices across all offices
|
|
35
|
+
- **Privacy by Design** — Data minimization, purpose limitation, and privacy impact assessments are standard project deliverables
|
|
36
|
+
- **Breach Response** — Documented incident response procedure with 72-hour notification commitment
|
|
37
|
+
|
|
38
|
+
## Data Residency
|
|
39
|
+
|
|
40
|
+
All client data is processed and stored exclusively within the European Union. Our infrastructure runs on EU-region data centers (AWS eu-central-1, eu-west-1), and we do not transfer data outside the EU/EEA without explicit client authorization and appropriate safeguards.
|
|
41
|
+
|
|
42
|
+
## Security Practices
|
|
43
|
+
|
|
44
|
+
**Secure Development Lifecycle** — Threat modeling during architecture, SAST/DAST in CI/CD pipelines, dependency vulnerability scanning, mandatory code reviews, and pre-deployment penetration testing for every release.
|
|
45
|
+
|
|
46
|
+
**Access Control** — Principle of least privilege enforced across all systems. Role-based access with quarterly reviews. Phishing-resistant MFA (FIDO2) required for all employees. Privileged access managed through a just-in-time elevation system.
|
|
47
|
+
|
|
48
|
+
**Encryption** — AES-256 encryption at rest for all data stores. TLS 1.3 for all data in transit. Client-managed encryption keys available upon request.
|
|
49
|
+
|
|
50
|
+
**Monitoring & Incident Response** — 24/7 security monitoring via our internal SOC. Automated threat detection with SIEM/SOAR integration. Mean time to acknowledge: under 15 minutes. Documented incident response playbooks tested quarterly through tabletop exercises.
|
|
51
|
+
|
|
52
|
+
**Employee Security** — Background checks for all employees. Annual security awareness training with phishing simulations. Clean desk policy and device management for all endpoints.
|
|
53
|
+
|
|
54
|
+
## Compliance Frameworks
|
|
55
|
+
|
|
56
|
+
We have experience implementing and operating within the following regulatory frameworks:
|
|
57
|
+
|
|
58
|
+
- PCI DSS (Payment Card Industry)
|
|
59
|
+
- HIPAA (Healthcare)
|
|
60
|
+
- DORA (Digital Operational Resilience Act)
|
|
61
|
+
- SOX (Sarbanes-Oxley)
|
|
62
|
+
- NIS2 Directive
|
|
63
|
+
- FDA 21 CFR Part 11 (Life Sciences)
|
|
64
|
+
- ISO 50001 (Energy Management)
|
|
65
|
+
|
|
66
|
+
For compliance-related inquiries, contact our security team at [security@lokatech.eu](mailto:security@lokatech.eu).
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Cloud & Infrastructure"
|
|
3
|
+
type: service
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: cloud-infrastructure
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
short_description: "AWS, Azure, and GCP solutions — from migration and architecture design through optimization to 24/7 managed services. 200+ cloud projects delivered."
|
|
10
|
+
icon: cloud
|
|
11
|
+
hero_stats:
|
|
12
|
+
- value: "200+"
|
|
13
|
+
label: "Cloud projects"
|
|
14
|
+
- value: "99.99%"
|
|
15
|
+
label: "Avg. uptime SLA"
|
|
16
|
+
- value: "40%"
|
|
17
|
+
label: "Avg. cost savings"
|
|
18
|
+
challenges:
|
|
19
|
+
- "Legacy on-prem infrastructure can't scale for peak demand and costs millions in idle capacity"
|
|
20
|
+
- "Multi-cloud complexity makes security, compliance, and cost management nearly impossible"
|
|
21
|
+
- "Migration risks — one wrong move and production goes down for millions of users"
|
|
22
|
+
- "Lack of internal cloud expertise slows adoption and introduces architectural debt"
|
|
23
|
+
- "Vendor lock-in fears prevent organizations from committing to a cloud strategy"
|
|
24
|
+
- "Compliance requirements (PCI DSS, HIPAA, GDPR) add layers of complexity to every deployment"
|
|
25
|
+
process:
|
|
26
|
+
- title: "Cloud Assessment & Strategy"
|
|
27
|
+
description: "We map your entire infrastructure, identify migration candidates, and build a TCO-driven business case. Deliverable: a prioritized migration roadmap with ROI projections."
|
|
28
|
+
- title: "Architecture Design"
|
|
29
|
+
description: "Multi-cloud, hybrid, or single-provider — we design architectures tailored to your compliance, performance, and budget requirements. Every design is reviewed by a certified solutions architect."
|
|
30
|
+
- title: "Migration Execution"
|
|
31
|
+
description: "Lift-and-shift, re-platform, or re-architect — we choose the right approach for each workload. Zero-downtime migrations with automated rollback procedures."
|
|
32
|
+
- title: "Optimization & FinOps"
|
|
33
|
+
description: "Reserved instances, spot fleet management, resource right-sizing, and automated scaling. Our FinOps practice typically reduces cloud spend by 30-50%."
|
|
34
|
+
- title: "24/7 Managed Services"
|
|
35
|
+
description: "Round-the-clock monitoring, incident response, patching, and continuous optimization. 15-minute SLA for critical incidents."
|
|
36
|
+
capabilities:
|
|
37
|
+
- "Cloud Migration — zero-downtime strategies for any workload"
|
|
38
|
+
- "Cloud-native Development — serverless, containers, microservices"
|
|
39
|
+
- "Infrastructure as Code — Terraform, Pulumi, CloudFormation"
|
|
40
|
+
- "Kubernetes & Container Orchestration — EKS, AKS, GKE"
|
|
41
|
+
- "DevOps & CI/CD — GitOps, ArgoCD, pipeline automation"
|
|
42
|
+
- "Cost Optimization & FinOps — 30-50% typical savings"
|
|
43
|
+
- "Security & Compliance — PCI DSS, HIPAA, SOC 2, GDPR"
|
|
44
|
+
- "Disaster Recovery — multi-region failover, RTO < 15min"
|
|
45
|
+
- "Observability — Prometheus, Grafana, Datadog, ELK stack"
|
|
46
|
+
technologies:
|
|
47
|
+
- name: "AWS"
|
|
48
|
+
- name: "Azure"
|
|
49
|
+
- name: "GCP"
|
|
50
|
+
- name: "Kubernetes"
|
|
51
|
+
- name: "Terraform"
|
|
52
|
+
- name: "Docker"
|
|
53
|
+
- name: "ArgoCD"
|
|
54
|
+
- name: "Helm"
|
|
55
|
+
- name: "Prometheus"
|
|
56
|
+
- name: "Grafana"
|
|
57
|
+
- name: "Ansible"
|
|
58
|
+
- name: "Pulumi"
|
|
59
|
+
case_studies:
|
|
60
|
+
- title: "Retail Cloud Migration"
|
|
61
|
+
result: "60% cost reduction, 3× performance"
|
|
62
|
+
url: "/case-studies/retail-cloud-migration"
|
|
63
|
+
- title: "5G Network Platform"
|
|
64
|
+
result: "99.999% uptime, €8M savings"
|
|
65
|
+
url: "/case-studies/telecom-5g-platform"
|
|
66
|
+
- title: "Banking Modernization"
|
|
67
|
+
result: "85% faster deployments"
|
|
68
|
+
url: "/case-studies/banking-platform-modernization"
|
|
69
|
+
related_industries: "banking, retail, telecom, energy"
|
|
70
|
+
seo:
|
|
71
|
+
title: "Cloud & Infrastructure Services — LokaTech Solutions"
|
|
72
|
+
description: "Enterprise cloud migration, optimization, and managed services. AWS, Azure, GCP certified engineers. 200+ projects, 99.99% uptime SLA."
|
|
73
|
+
---
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Custom Software Development"
|
|
3
|
+
type: service
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: custom-software-development
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
short_description: "Bespoke applications built with modern architectures — from MVPs to mission-critical platforms. 200+ enterprise projects delivered across banking, healthcare, and manufacturing."
|
|
10
|
+
icon: code
|
|
11
|
+
hero_stats:
|
|
12
|
+
- value: "200+"
|
|
13
|
+
label: "Projects delivered"
|
|
14
|
+
- value: "95%"
|
|
15
|
+
label: "Client retention"
|
|
16
|
+
- value: "3x"
|
|
17
|
+
label: "Avg. time-to-market improvement"
|
|
18
|
+
challenges:
|
|
19
|
+
- "Off-the-shelf software can't address unique business processes that drive your competitive advantage"
|
|
20
|
+
- "Legacy monoliths are slow, fragile, and impossible to scale without a complete rewrite"
|
|
21
|
+
- "Integration gaps between systems create data silos and manual workarounds that cost millions"
|
|
22
|
+
- "Outsourcing projects fail because vendors don't understand your domain and business context"
|
|
23
|
+
- "Technical debt accumulates silently — until a critical release breaks everything"
|
|
24
|
+
- "Recruiting and retaining senior engineers is harder than ever in competitive talent markets"
|
|
25
|
+
process:
|
|
26
|
+
- title: "Discovery & Architecture"
|
|
27
|
+
description: "We map your business processes, technical landscape, and goals. Domain-driven design workshops identify bounded contexts and the optimal architecture — monolith, microservices, or modular."
|
|
28
|
+
- title: "Agile Development"
|
|
29
|
+
description: "Two-week sprints with continuous stakeholder demos. Every sprint delivers working software. Feature flags enable risk-free releases to production."
|
|
30
|
+
- title: "Quality Engineering"
|
|
31
|
+
description: "Automated test suites (unit, integration, E2E), code reviews by senior engineers, security audits, and performance testing at every stage. We target 80%+ code coverage."
|
|
32
|
+
- title: "DevOps & Deployment"
|
|
33
|
+
description: "CI/CD pipelines, containerization, and infrastructure-as-code from day one. Blue-green deployments with automated rollback. Zero-downtime releases."
|
|
34
|
+
- title: "Ongoing Support & Evolution"
|
|
35
|
+
description: "24/7 monitoring, SLA-backed maintenance, and continuous improvement. Quarterly architecture reviews ensure your platform scales with your business."
|
|
36
|
+
capabilities:
|
|
37
|
+
- "Enterprise Applications — ERP extensions, CRM platforms, workflow automation"
|
|
38
|
+
- "API & Integration — RESTful and GraphQL APIs, event-driven architectures, ESB"
|
|
39
|
+
- "Legacy Modernization — monolith-to-microservices, strangler fig pattern, database migration"
|
|
40
|
+
- "Mobile & Cross-platform — React Native, Flutter, progressive web apps"
|
|
41
|
+
- "Data-intensive Systems — real-time processing, data lakes, ETL pipelines"
|
|
42
|
+
- "Cloud-native — serverless, containers, Kubernetes, auto-scaling"
|
|
43
|
+
- "Domain-driven Design — bounded contexts, CQRS, event sourcing"
|
|
44
|
+
- "Security by Design — OWASP compliance, threat modeling, secure SDLC"
|
|
45
|
+
- "Performance Engineering — load testing, profiling, optimization"
|
|
46
|
+
technologies:
|
|
47
|
+
- name: "Java"
|
|
48
|
+
- name: "Spring Boot"
|
|
49
|
+
- name: ".NET"
|
|
50
|
+
- name: "Python"
|
|
51
|
+
- name: "Node.js"
|
|
52
|
+
- name: "TypeScript"
|
|
53
|
+
- name: "React"
|
|
54
|
+
- name: "Angular"
|
|
55
|
+
- name: "PostgreSQL"
|
|
56
|
+
- name: "MongoDB"
|
|
57
|
+
- name: "Redis"
|
|
58
|
+
- name: "Kafka"
|
|
59
|
+
- name: "Docker"
|
|
60
|
+
- name: "Kubernetes"
|
|
61
|
+
case_studies:
|
|
62
|
+
- title: "Banking Platform Modernization"
|
|
63
|
+
result: "60% faster transactions"
|
|
64
|
+
url: "/case-studies/banking-platform-modernization"
|
|
65
|
+
- title: "E-commerce Platform Rewrite"
|
|
66
|
+
result: "3x throughput increase"
|
|
67
|
+
url: "/case-studies/ecommerce-platform-rewrite"
|
|
68
|
+
- title: "Healthcare Data Pipeline"
|
|
69
|
+
result: "99.97% uptime achieved"
|
|
70
|
+
url: "/case-studies/healthcare-data-pipeline"
|
|
71
|
+
seo:
|
|
72
|
+
title: "Custom Software Development Services — LokaTech Solutions"
|
|
73
|
+
description: "Enterprise custom software development with agile delivery. Java, .NET, Python, React — from MVPs to mission-critical platforms."
|
|
74
|
+
---
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Tworzenie oprogramowania na zamówienie"
|
|
3
|
+
type: service
|
|
4
|
+
status: published
|
|
5
|
+
langcode: pl
|
|
6
|
+
slug: custom-software-development
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
short_description: "Dedykowane aplikacje budowane w nowoczesnych architekturach — od MVP po platformy klasy enterprise. Ponad 200 projektów dla sektora bankowego, ochrony zdrowia i produkcji."
|
|
10
|
+
icon: code
|
|
11
|
+
hero_stats:
|
|
12
|
+
- value: "200+"
|
|
13
|
+
label: "Zrealizowanych projektów"
|
|
14
|
+
- value: "95%"
|
|
15
|
+
label: "Retencja klientów"
|
|
16
|
+
- value: "3x"
|
|
17
|
+
label: "Śr. poprawa time-to-market"
|
|
18
|
+
challenges:
|
|
19
|
+
- "Oprogramowanie z półki nie obsługuje unikalnych procesów biznesowych, które stanowią Twoją przewagę konkurencyjną"
|
|
20
|
+
- "Monolity legacy są wolne, kruche i niemożliwe do skalowania bez pełnego przepisania"
|
|
21
|
+
- "Luki integracyjne między systemami tworzą silosy danych i ręczne obejścia kosztujące miliony"
|
|
22
|
+
- "Projekty outsourcingowe kończą się porażką, bo dostawcy nie rozumieją Twojej domeny i kontekstu biznesowego"
|
|
23
|
+
- "Dług techniczny narasta w ciszy — aż krytyczny release wszystko zepsuje"
|
|
24
|
+
- "Rekrutacja i utrzymanie seniorów jest trudniejsze niż kiedykolwiek na konkurencyjnym rynku talentów"
|
|
25
|
+
process:
|
|
26
|
+
- title: "Discovery i architektura"
|
|
27
|
+
description: "Mapujemy Twoje procesy biznesowe, krajobraz techniczny i cele. Warsztaty Domain-Driven Design identyfikują bounded contexty i optymalną architekturę — monolit, mikroserwisy lub modularną."
|
|
28
|
+
- title: "Zwinne tworzenie"
|
|
29
|
+
description: "Dwutygodniowe sprinty z ciągłymi demo dla interesariuszy. Każdy sprint dostarcza działające oprogramowanie. Feature flagi umożliwiają bezpieczne wdrożenia na produkcję."
|
|
30
|
+
- title: "Inżynieria jakości"
|
|
31
|
+
description: "Automatyczne zestawy testów (unit, integracyjne, E2E), code review przez seniorów, audyty bezpieczeństwa i testy wydajności na każdym etapie. Celujemy w 80%+ pokrycia kodu."
|
|
32
|
+
- title: "DevOps i wdrożenie"
|
|
33
|
+
description: "Pipeline CI/CD, konteneryzacja i infrastruktura jako kod od pierwszego dnia. Wdrożenia blue-green z automatycznym rollbackiem. Zero przestojów."
|
|
34
|
+
- title: "Wsparcie i rozwój"
|
|
35
|
+
description: "Monitoring 24/7, utrzymanie z gwarantowanym SLA i ciągłe doskonalenie. Kwartalne przeglądy architektury zapewniają skalowanie platformy wraz z Twoim biznesem."
|
|
36
|
+
capabilities:
|
|
37
|
+
- "Aplikacje enterprise — rozszerzenia ERP, platformy CRM, automatyzacja workflow"
|
|
38
|
+
- "API i integracja — RESTful i GraphQL API, architektury event-driven, ESB"
|
|
39
|
+
- "Modernizacja legacy — monolit-to-microservices, strangler fig pattern, migracja baz danych"
|
|
40
|
+
- "Mobile i cross-platform — React Native, Flutter, progressive web apps"
|
|
41
|
+
- "Systemy data-intensive — przetwarzanie w czasie rzeczywistym, data lakes, pipeline ETL"
|
|
42
|
+
- "Cloud-native — serverless, kontenery, Kubernetes, auto-scaling"
|
|
43
|
+
- "Domain-Driven Design — bounded contexty, CQRS, event sourcing"
|
|
44
|
+
- "Security by Design — zgodność z OWASP, modelowanie zagrożeń, bezpieczny SDLC"
|
|
45
|
+
- "Inżynieria wydajności — testy obciążeniowe, profilowanie, optymalizacja"
|
|
46
|
+
technologies:
|
|
47
|
+
- name: "Java"
|
|
48
|
+
- name: "Spring Boot"
|
|
49
|
+
- name: ".NET"
|
|
50
|
+
- name: "Python"
|
|
51
|
+
- name: "Node.js"
|
|
52
|
+
- name: "TypeScript"
|
|
53
|
+
- name: "React"
|
|
54
|
+
- name: "Angular"
|
|
55
|
+
- name: "PostgreSQL"
|
|
56
|
+
- name: "MongoDB"
|
|
57
|
+
- name: "Redis"
|
|
58
|
+
- name: "Kafka"
|
|
59
|
+
- name: "Kubernetes"
|
|
60
|
+
- name: "Terraform"
|
|
61
|
+
seo:
|
|
62
|
+
title: "Tworzenie oprogramowania na zamówienie — LokaTech Solutions"
|
|
63
|
+
description: "Dedykowane rozwiązania software'owe od LokaTech — od MVP po platformy enterprise. 200+ projektów, 95% retencja klientów."
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## Dlaczego oprogramowanie na zamówienie?
|
|
67
|
+
|
|
68
|
+
Każde przedsiębiorstwo ma unikalne procesy, które stanowią jego przewagę konkurencyjną. Gotowe rozwiązania z półki zmuszają do kompromisów — ograniczając workflow, spowalniając innowacje i tworząc silosy danych między systemami.
|
|
69
|
+
|
|
70
|
+
Oprogramowanie na zamówienie jest budowane wokół Twojego biznesu, a nie odwrotnie. Projektujemy systemy, które odzwierciedlają Twoją domenę, integrują się z istniejącym stosem technologicznym i ewoluują wraz ze zmianą potrzeb.
|
|
71
|
+
|
|
72
|
+
## Nasze podejście
|
|
73
|
+
|
|
74
|
+
Łączymy rygor inżynierski z głębokim zrozumieniem domeny. Każdy projekt zaczyna się od warsztatu discovery, na którym mapujemy procesy biznesowe, identyfikujemy bounded contexty i projektujemy architekturę docelową — zanim zostanie napisana pierwsza linia kodu.
|
|
75
|
+
|
|
76
|
+
Nasze zespoły pracują w dwutygodniowych sprintach z ciągłymi demo, zapewniając pełną przejrzystość i szybkie pętle informacji zwrotnej. Traktujemy jakość jako wymóg nienegocjowalny: automatyczne testy, code review, audyty bezpieczeństwa i testy wydajności to standardowa część każdego sprintu.
|
|
77
|
+
|
|
78
|
+
## Technologie, które stosujemy
|
|
79
|
+
|
|
80
|
+
Dobieramy technologię do problemu, nie odwrotnie. Nasi inżynierowie mają produkcyjne doświadczenie z Java/Spring Boot, .NET, Python, Node.js/TypeScript, React, Angular oraz szerokim spektrum baz danych i narzędzi infrastrukturalnych.
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Cybersecurity"
|
|
3
|
+
type: service
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: cybersecurity
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
short_description: "Comprehensive security audits, 24/7 SOC services, and compliance frameworks. ISO 27001 and SOC 2 certified team protecting enterprise assets across 6 industries."
|
|
10
|
+
icon: shield
|
|
11
|
+
hero_stats:
|
|
12
|
+
- value: "500+"
|
|
13
|
+
label: "Security assessments"
|
|
14
|
+
- value: "24/7"
|
|
15
|
+
label: "SOC monitoring"
|
|
16
|
+
- value: "0"
|
|
17
|
+
label: "Client data breaches"
|
|
18
|
+
challenges:
|
|
19
|
+
- "Ransomware attacks increased 300% — one breach can cost your organization $4M+ and months of recovery"
|
|
20
|
+
- "Supply chain attacks exploit your vendors' weaknesses to bypass your own defenses"
|
|
21
|
+
- "Regulatory requirements (SOC 2, ISO 27001, GDPR, PCI DSS) keep expanding and audits keep failing"
|
|
22
|
+
- "Shadow IT and unmanaged cloud services create invisible attack surfaces"
|
|
23
|
+
- "Cybersecurity talent shortage means your SOC team is understaffed and overwhelmed by alerts"
|
|
24
|
+
- "Legacy systems lack modern authentication, encryption, and monitoring capabilities"
|
|
25
|
+
process:
|
|
26
|
+
- title: "Security Assessment & Audit"
|
|
27
|
+
description: "Comprehensive review of infrastructure, applications, processes, and people. Includes penetration testing, vulnerability scanning, and social engineering assessments. Deliverable: prioritized risk register with remediation roadmap."
|
|
28
|
+
- title: "Architecture & Zero Trust Design"
|
|
29
|
+
description: "Design defense-in-depth architecture with Zero Trust principles — network segmentation, microsegmentation, identity-first security, and least-privilege access."
|
|
30
|
+
- title: "Implementation & Hardening"
|
|
31
|
+
description: "Deploy SIEM, EDR, WAF, and IAM solutions. Configure monitoring rules, establish incident response playbooks, and harden all endpoints and servers."
|
|
32
|
+
- title: "Managed SOC Services"
|
|
33
|
+
description: "24/7 security operations center with real-time threat detection, hunting, and incident response. 15-minute SLA for critical alerts. Monthly threat intelligence reports."
|
|
34
|
+
- title: "Compliance & Continuous Improvement"
|
|
35
|
+
description: "Achieve and maintain ISO 27001, SOC 2, GDPR, PCI DSS certifications. Continuous vulnerability scanning, quarterly pen-tests, and annual security architecture reviews."
|
|
36
|
+
capabilities:
|
|
37
|
+
- "Penetration Testing — application, network, API, and social engineering assessments"
|
|
38
|
+
- "Security Operations (SOC) — SIEM deployment, threat hunting, incident response"
|
|
39
|
+
- "Identity & Access Management — SSO, MFA, PAM, RBAC, Zero Trust IAM"
|
|
40
|
+
- "Cloud Security — CSPM, CWPP, container security, secrets management"
|
|
41
|
+
- "Compliance & GRC — ISO 27001, SOC 2, GDPR, PCI DSS, HIPAA"
|
|
42
|
+
- "Application Security — SAST, DAST, SCA, secure SDLC, DevSecOps"
|
|
43
|
+
- "Network Security — firewall management, IDS/IPS, DDoS mitigation"
|
|
44
|
+
- "Incident Response — forensics, containment, eradication, recovery"
|
|
45
|
+
- "Security Awareness — phishing simulations, training programs, policy development"
|
|
46
|
+
technologies:
|
|
47
|
+
- name: "CrowdStrike"
|
|
48
|
+
- name: "Splunk"
|
|
49
|
+
- name: "Palo Alto"
|
|
50
|
+
- name: "Okta"
|
|
51
|
+
- name: "HashiCorp Vault"
|
|
52
|
+
- name: "Tenable"
|
|
53
|
+
- name: "Snyk"
|
|
54
|
+
- name: "SentinelOne"
|
|
55
|
+
- name: "Cloudflare"
|
|
56
|
+
- name: "Wiz"
|
|
57
|
+
- name: "Prisma Cloud"
|
|
58
|
+
- name: "Fortinet"
|
|
59
|
+
case_studies:
|
|
60
|
+
- title: "Banking Platform Modernization"
|
|
61
|
+
result: "Zero breaches post-migration"
|
|
62
|
+
url: "/case-studies/banking-platform-modernization"
|
|
63
|
+
- title: "Insurance Claims Automation"
|
|
64
|
+
result: "SOC 2 Type II in 4 months"
|
|
65
|
+
url: "/case-studies/insurance-claims-automation"
|
|
66
|
+
- title: "GovTech Citizen Portal"
|
|
67
|
+
result: "100% GDPR compliance"
|
|
68
|
+
url: "/case-studies/govtech-citizen-portal"
|
|
69
|
+
seo:
|
|
70
|
+
title: "Cybersecurity Services — LokaTech Solutions"
|
|
71
|
+
description: "Enterprise cybersecurity — audits, 24/7 SOC, compliance, zero trust architecture. ISO 27001 certified team."
|
|
72
|
+
---
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Data & AI"
|
|
3
|
+
type: service
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: data-ai
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
short_description: "ML pipelines, analytics platforms, and generative AI solutions that turn enterprise data into competitive advantage. From POC to production at scale."
|
|
10
|
+
icon: brain
|
|
11
|
+
hero_stats:
|
|
12
|
+
- value: "80+"
|
|
13
|
+
label: "ML models in production"
|
|
14
|
+
- value: "50PB+"
|
|
15
|
+
label: "Data processed annually"
|
|
16
|
+
- value: "10x"
|
|
17
|
+
label: "Avg. decision speed improvement"
|
|
18
|
+
challenges:
|
|
19
|
+
- "Organizations are drowning in data but starving for actionable insights — data silos make analysis impossible"
|
|
20
|
+
- "95% of AI proofs-of-concept never reach production due to infrastructure, quality, and governance gaps"
|
|
21
|
+
- "Poor data quality and inconsistent definitions lead to conflicting dashboards and zero trust in numbers"
|
|
22
|
+
- "Real-time processing demands outpace batch ETL architectures built years ago"
|
|
23
|
+
- "Generative AI hype creates pressure to ship fast — but hallucinations and security risks require rigor"
|
|
24
|
+
- "Data engineering and ML talent is scarce and expensive — building an internal team takes 12-18 months"
|
|
25
|
+
process:
|
|
26
|
+
- title: "Data Strategy & Use Case Discovery"
|
|
27
|
+
description: "Assess data maturity across all domains. Identify high-ROI use cases through workshops with business stakeholders. Build a data strategy roadmap with measurable KPIs."
|
|
28
|
+
- title: "Data Engineering & Architecture"
|
|
29
|
+
description: "Design and build scalable data platforms — lakehouse architecture, streaming pipelines, and governed data products. Modern stack: Spark, Kafka, dbt, Airflow."
|
|
30
|
+
- title: "AI/ML Development"
|
|
31
|
+
description: "From exploratory analysis to production-grade models. MLOps-first approach: experiment tracking, model registry, automated retraining, A/B testing, and drift detection."
|
|
32
|
+
- title: "Analytics & BI"
|
|
33
|
+
description: "Self-service dashboards and embedded analytics that business users actually trust. Semantic layers, automated anomaly detection, and natural language querying."
|
|
34
|
+
- title: "AI Operations & Governance"
|
|
35
|
+
description: "Model monitoring, fairness auditing, lineage tracking, and continuous retraining pipelines. Responsible AI frameworks for regulated industries."
|
|
36
|
+
capabilities:
|
|
37
|
+
- "Data Engineering — ETL/ELT, lakehouse, real-time streaming, data mesh"
|
|
38
|
+
- "Machine Learning — predictive models, NLP, computer vision, recommendations"
|
|
39
|
+
- "Generative AI — LLM integration, RAG architectures, fine-tuning, AI agents"
|
|
40
|
+
- "Business Intelligence — dashboards, KPI tracking, self-service analytics"
|
|
41
|
+
- "Data Governance — quality frameworks, lineage, catalog, compliance automation"
|
|
42
|
+
- "MLOps — experiment tracking, model registry, CI/CD for ML, monitoring"
|
|
43
|
+
- "Real-time Analytics — streaming, CEP, real-time dashboards, alerting"
|
|
44
|
+
- "Computer Vision — defect detection, document processing, medical imaging"
|
|
45
|
+
- "NLP & Text Analytics — entity extraction, sentiment, summarization, search"
|
|
46
|
+
technologies:
|
|
47
|
+
- name: "Python"
|
|
48
|
+
- name: "TensorFlow"
|
|
49
|
+
- name: "PyTorch"
|
|
50
|
+
- name: "Apache Spark"
|
|
51
|
+
- name: "Kafka"
|
|
52
|
+
- name: "Databricks"
|
|
53
|
+
- name: "Snowflake"
|
|
54
|
+
- name: "dbt"
|
|
55
|
+
- name: "Airflow"
|
|
56
|
+
- name: "MLflow"
|
|
57
|
+
- name: "LangChain"
|
|
58
|
+
- name: "OpenAI"
|
|
59
|
+
- name: "Tableau"
|
|
60
|
+
- name: "Power BI"
|
|
61
|
+
case_studies:
|
|
62
|
+
- title: "Healthcare Data Pipeline"
|
|
63
|
+
result: "12x faster data processing"
|
|
64
|
+
url: "/case-studies/healthcare-data-pipeline"
|
|
65
|
+
- title: "Manufacturing IoT Digital Twin"
|
|
66
|
+
result: "35% less unplanned downtime"
|
|
67
|
+
url: "/case-studies/manufacturing-iot-digital-twin"
|
|
68
|
+
- title: "Insurance Claims Automation"
|
|
69
|
+
result: "70% automated claim triage"
|
|
70
|
+
url: "/case-studies/insurance-claims-automation"
|
|
71
|
+
seo:
|
|
72
|
+
title: "Data & AI Services — LokaTech Solutions"
|
|
73
|
+
description: "Enterprise AI and data engineering. ML models, data pipelines, analytics platforms — from POC to production at scale."
|
|
74
|
+
---
|