@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,182 @@
|
|
|
1
|
+
uuid: "nt-homepage-001-pl"
|
|
2
|
+
title: "LokaTech Solutions"
|
|
3
|
+
type: landing_page
|
|
4
|
+
status: published
|
|
5
|
+
langcode: pl
|
|
6
|
+
slug: homepage
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
seo:
|
|
9
|
+
title: "LokaTech Solutions — Usługi IT dla przedsiębiorstw i transformacja cyfrowa"
|
|
10
|
+
description: "Tworzymy technologie, które napędzają przedsiębiorstwa. Oprogramowanie na zamówienie, chmura, AI, cyberbezpieczeństwo — 800+ inżynierów w Europie."
|
|
11
|
+
|
|
12
|
+
sections:
|
|
13
|
+
|
|
14
|
+
- type: hero
|
|
15
|
+
alignment: center
|
|
16
|
+
heading: "Tworzymy *technologie*, które napędzają przedsiębiorstwa"
|
|
17
|
+
subheading: "Oprogramowanie na zamówienie, infrastruktura chmurowa, AI i cyberbezpieczeństwo — dostarczane przez 800+ inżynierów z 6 europejskich biur."
|
|
18
|
+
cta_text: "Rozpocznij projekt"
|
|
19
|
+
cta_url: "/contact"
|
|
20
|
+
cta_secondary_text: "Zobacz realizacje"
|
|
21
|
+
cta_secondary_url: "/case-studies"
|
|
22
|
+
settings:
|
|
23
|
+
background: dark
|
|
24
|
+
spacing: xlarge
|
|
25
|
+
width: wide
|
|
26
|
+
background_image: /static/images/hero-bg.png
|
|
27
|
+
|
|
28
|
+
- type: logo_slider
|
|
29
|
+
heading: "Zaufali nam liderzy branży"
|
|
30
|
+
items:
|
|
31
|
+
- alt: "Droptica"
|
|
32
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Droptica"
|
|
33
|
+
- alt: "Open Intranet"
|
|
34
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Open+Intranet"
|
|
35
|
+
- alt: "Deutsche Bank"
|
|
36
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Deutsche+Bank"
|
|
37
|
+
- alt: "Siemens"
|
|
38
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Siemens"
|
|
39
|
+
- alt: "Roche"
|
|
40
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Roche"
|
|
41
|
+
- alt: "Volkswagen"
|
|
42
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Volkswagen"
|
|
43
|
+
- alt: "T-Mobile"
|
|
44
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=T-Mobile"
|
|
45
|
+
- alt: "ING Bank"
|
|
46
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=ING+Bank"
|
|
47
|
+
- alt: "Bosch"
|
|
48
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Bosch"
|
|
49
|
+
- alt: "Philips"
|
|
50
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Philips"
|
|
51
|
+
settings:
|
|
52
|
+
spacing: medium
|
|
53
|
+
|
|
54
|
+
- type: features
|
|
55
|
+
heading: "Kompleksowe usługi *inżynieryjne*"
|
|
56
|
+
subheading: "Od strategii po wdrożenie — jeden partner na cały stos technologiczny."
|
|
57
|
+
columns: "3"
|
|
58
|
+
items:
|
|
59
|
+
- title: "Oprogramowanie na zamówienie"
|
|
60
|
+
description: "Dedykowane aplikacje budowane w nowoczesnych architekturach z dostawą w metodyce agile — od MVP po platformy enterprise."
|
|
61
|
+
icon: code
|
|
62
|
+
- title: "Chmura i DevOps"
|
|
63
|
+
description: "AWS, Azure, GCP — migracja, infrastruktura jako kod, Kubernetes i zarządzane usługi 24/7."
|
|
64
|
+
icon: cloud
|
|
65
|
+
- title: "AI i dane"
|
|
66
|
+
description: "Uczenie maszynowe, integracja LLM, pipeline'y danych i analityka przekształcająca informacje w przewagę konkurencyjną."
|
|
67
|
+
icon: brain
|
|
68
|
+
- title: "Cyberbezpieczeństwo"
|
|
69
|
+
description: "Audyty bezpieczeństwa, usługi SOC, frameworki compliance i architektura zero-trust dla regulowanych branż."
|
|
70
|
+
icon: shield
|
|
71
|
+
- title: "Rozszerzenie zespołu"
|
|
72
|
+
description: "Dedykowane zespoły inżynierskie, które skalują się od 1 specjalisty do 50-osobowych zespołów w ciągu tygodni."
|
|
73
|
+
icon: users
|
|
74
|
+
- title: "Transformacja cyfrowa"
|
|
75
|
+
description: "Modernizacja systemów legacy, automatyzacja procesów i doradztwo strategiczne przyspieszające cyfrową transformację."
|
|
76
|
+
icon: rocket
|
|
77
|
+
settings:
|
|
78
|
+
spacing: large
|
|
79
|
+
|
|
80
|
+
- type: counters
|
|
81
|
+
heading: "Sprawdzeni w *skali*"
|
|
82
|
+
items:
|
|
83
|
+
- number: "800"
|
|
84
|
+
label: "Inżynierów"
|
|
85
|
+
suffix: "+"
|
|
86
|
+
- number: "15"
|
|
87
|
+
label: "Lat doświadczenia"
|
|
88
|
+
suffix: "+"
|
|
89
|
+
- number: "200"
|
|
90
|
+
label: "Zrealizowanych projektów"
|
|
91
|
+
suffix: "+"
|
|
92
|
+
- number: "6"
|
|
93
|
+
label: "Biur w Europie"
|
|
94
|
+
settings:
|
|
95
|
+
background: dark
|
|
96
|
+
spacing: large
|
|
97
|
+
|
|
98
|
+
- type: text_with_image
|
|
99
|
+
heading: "Twój dedykowany zespół inżynierski"
|
|
100
|
+
body: "Nie outsourcujemy. Każdy projekt obsługują seniorzy z naszych europejskich biur — architekci, eksperci domenowi i liderzy delivery, którzy towarzyszą Ci od odkrycia po produkcję. Nasze zespoły integrują się z Twoją organizacją, poznają Twój codebase i działają jako rozszerzenie Twojego działu inżynierii."
|
|
101
|
+
image: "/static/images/team-collaboration.jpg"
|
|
102
|
+
image_alt: "Zespół inżynierów LokaTech współpracujący nad architekturą systemu"
|
|
103
|
+
image_position: right
|
|
104
|
+
cta_text: "Poznaj nasz zespół"
|
|
105
|
+
cta_url: "/about"
|
|
106
|
+
settings:
|
|
107
|
+
spacing: large
|
|
108
|
+
background: light
|
|
109
|
+
|
|
110
|
+
- type: features
|
|
111
|
+
heading: "Realne wyniki dla *prawdziwych przedsiębiorstw*"
|
|
112
|
+
subheading: "Zobacz, jak pomogliśmy liderom branży transformować ich technologię."
|
|
113
|
+
columns: "3"
|
|
114
|
+
items:
|
|
115
|
+
- title: "Modernizacja platformy bankowej"
|
|
116
|
+
description: "Migracja legacy systemu core banking do mikroserwisów dla europejskiego banku Tier-1. 85% szybsze wdrożenia, 99,99% uptime, 2,4M € rocznych oszczędności."
|
|
117
|
+
icon: building
|
|
118
|
+
- title: "Pipeline AI dla służby zdrowia"
|
|
119
|
+
description: "Budowa pipeline'u ML w czasie rzeczywistym przetwarzającego 2M+ rekordów pacjentów dziennie z pełną zgodnością HIPAA. Skrócenie czasu diagnostyki o 40%."
|
|
120
|
+
icon: heart
|
|
121
|
+
- title: "Migracja chmurowa dla retailu"
|
|
122
|
+
description: "Przeniesienie 40+ aplikacji do AWS dla retailera z Fortune 500. 60% redukcja kosztów infrastruktury, 3× wzrost wydajności, zero przestojów."
|
|
123
|
+
icon: shopping-cart
|
|
124
|
+
settings:
|
|
125
|
+
spacing: large
|
|
126
|
+
background: light
|
|
127
|
+
|
|
128
|
+
- type: testimonials
|
|
129
|
+
heading: "Co mówią nasi *klienci*"
|
|
130
|
+
items:
|
|
131
|
+
- quote: "LokaTech zastąpił naszych trzech offshore'owych dostawców jednym zintegrowanym zespołem. Szybkość delivery podwoiła się, a wskaźnik defektów spadł o 70%. Są teraz naszym strategicznym partnerem technologicznym."
|
|
132
|
+
author: "Thomas Müller"
|
|
133
|
+
role: "CTO, Deutsche Industriebank"
|
|
134
|
+
- quote: "Migracja do chmury była najsprawniejszym projektem infrastrukturalnym, jaki realizowaliśmy w ciągu 15 lat. Zespół LokaTech rozumiał nasze ograniczenia regulacyjne od pierwszego dnia i dotrzymał każdego kamienia milowego."
|
|
135
|
+
author: "Dr. Sarah van den Berg"
|
|
136
|
+
role: "VP Engineering, Roche Digital"
|
|
137
|
+
- quote: "Przeszliśmy od pomysłu do produkcyjnego pipeline'u ML w 12 tygodni. Ich zespół AI nie tylko zbudował — przekazał wiedzę, aby nasz wewnętrzny zespół mógł utrzymywać i rozwijać system."
|
|
138
|
+
author: "Marek Kowalczyk"
|
|
139
|
+
role: "Head of Data, mBank"
|
|
140
|
+
settings:
|
|
141
|
+
spacing: large
|
|
142
|
+
background: light
|
|
143
|
+
|
|
144
|
+
- type: text_with_image
|
|
145
|
+
heading: "Od pierwszej rozmowy do produkcji"
|
|
146
|
+
body: "Każda współpraca zaczyna się od 60-minutowego warsztatu discovery prowadzonego przez architekta rozwiązań i eksperta domenowego. Mapujemy Twoje wyzwania, oceniamy opcje i dostarczamy konkretną roadmapę — zanim zostanie napisana pierwsza linia kodu. Żadnego pitchu sprzedażowego, żadnych generycznych propozycji. Tylko inżynieryjna jasność."
|
|
147
|
+
image: "/static/images/team-strategy-session.jpg"
|
|
148
|
+
image_alt: "Architekci LokaTech przeglądający strategię infrastruktury chmurowej"
|
|
149
|
+
image_position: left
|
|
150
|
+
cta_text: "Umów warsztat"
|
|
151
|
+
cta_url: "/contact"
|
|
152
|
+
settings:
|
|
153
|
+
spacing: large
|
|
154
|
+
background: light
|
|
155
|
+
|
|
156
|
+
- type: cta
|
|
157
|
+
eyebrow: "Gotowy, aby zacząć?"
|
|
158
|
+
heading: "Zbudujmy coś wyjątkowego"
|
|
159
|
+
description: "Opowiedz nam o swoim projekcie. Nasi architekci rozwiązań odpowiedzą w ciągu 24 godzin z dopasowaną propozycją."
|
|
160
|
+
button_text: "Rozpocznij rozmowę"
|
|
161
|
+
button_url: "/contact"
|
|
162
|
+
secondary_text: "Zobacz nasze usługi"
|
|
163
|
+
secondary_url: "/services"
|
|
164
|
+
settings:
|
|
165
|
+
background: dark
|
|
166
|
+
spacing: large
|
|
167
|
+
|
|
168
|
+
- type: logo_slider
|
|
169
|
+
heading: "Nagrody i certyfikaty"
|
|
170
|
+
items:
|
|
171
|
+
- alt: "ISO 27001"
|
|
172
|
+
image: "https://placehold.co/120x60/e2e8f0/64748b?text=ISO+27001"
|
|
173
|
+
- alt: "AWS Partner"
|
|
174
|
+
image: "https://placehold.co/120x60/e2e8f0/64748b?text=AWS+Partner"
|
|
175
|
+
- alt: "Microsoft Gold"
|
|
176
|
+
image: "https://placehold.co/120x60/e2e8f0/64748b?text=Microsoft+Gold"
|
|
177
|
+
- alt: "Clutch Top 100"
|
|
178
|
+
image: "https://placehold.co/120x60/e2e8f0/64748b?text=Clutch+Top+100"
|
|
179
|
+
- alt: "Great Place to Work"
|
|
180
|
+
image: "https://placehold.co/120x60/e2e8f0/64748b?text=GPTW"
|
|
181
|
+
settings:
|
|
182
|
+
spacing: medium
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
uuid: "nt-homepage-001"
|
|
2
|
+
title: "LokaTech Solutions"
|
|
3
|
+
type: landing_page
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: homepage
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
seo:
|
|
9
|
+
title: "LokaTech Solutions — Enterprise IT Services & Digital Transformation"
|
|
10
|
+
description: "We engineer technology that moves enterprises forward. Custom software, cloud, AI, cybersecurity — 800+ engineers across Europe."
|
|
11
|
+
|
|
12
|
+
sections:
|
|
13
|
+
|
|
14
|
+
# ───────────────────────────────────────────
|
|
15
|
+
# 1. HERO — Halo Effect: one bold statement
|
|
16
|
+
# ───────────────────────────────────────────
|
|
17
|
+
- type: hero
|
|
18
|
+
alignment: center
|
|
19
|
+
heading: "We engineer *technology* that moves enterprises forward"
|
|
20
|
+
subheading: "Custom software, cloud infrastructure, AI, and cybersecurity — delivered by 800+ engineers across 6 European offices."
|
|
21
|
+
cta_text: "Start a Project"
|
|
22
|
+
cta_url: "/contact"
|
|
23
|
+
cta_secondary_text: "View Case Studies"
|
|
24
|
+
cta_secondary_url: "/case-studies"
|
|
25
|
+
settings:
|
|
26
|
+
background: dark
|
|
27
|
+
spacing: xlarge
|
|
28
|
+
width: wide
|
|
29
|
+
background_image: /static/images/hero-bg.png
|
|
30
|
+
|
|
31
|
+
# ───────────────────────────────────────────
|
|
32
|
+
# 2. SOCIAL PROOF — Logo marquee
|
|
33
|
+
# ───────────────────────────────────────────
|
|
34
|
+
- type: logo_slider
|
|
35
|
+
heading: "Trusted by industry leaders"
|
|
36
|
+
items:
|
|
37
|
+
- alt: "Droptica"
|
|
38
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Droptica"
|
|
39
|
+
- alt: "Open Intranet"
|
|
40
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Open+Intranet"
|
|
41
|
+
- alt: "Deutsche Bank"
|
|
42
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Deutsche+Bank"
|
|
43
|
+
- alt: "Siemens"
|
|
44
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Siemens"
|
|
45
|
+
- alt: "Roche"
|
|
46
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Roche"
|
|
47
|
+
- alt: "Volkswagen"
|
|
48
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Volkswagen"
|
|
49
|
+
- alt: "T-Mobile"
|
|
50
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=T-Mobile"
|
|
51
|
+
- alt: "ING Bank"
|
|
52
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=ING+Bank"
|
|
53
|
+
- alt: "Bosch"
|
|
54
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Bosch"
|
|
55
|
+
- alt: "Philips"
|
|
56
|
+
image: "https://placehold.co/160x60/e2e8f0/64748b?text=Philips"
|
|
57
|
+
settings:
|
|
58
|
+
spacing: medium
|
|
59
|
+
|
|
60
|
+
# ───────────────────────────────────────────
|
|
61
|
+
# 3. SERVICES — 6 capabilities, clean grid
|
|
62
|
+
# ───────────────────────────────────────────
|
|
63
|
+
- type: features
|
|
64
|
+
heading: "Full-spectrum *engineering* services"
|
|
65
|
+
subheading: "From strategy to delivery — one partner for your entire technology stack."
|
|
66
|
+
columns: "3"
|
|
67
|
+
items:
|
|
68
|
+
- title: "Custom Software"
|
|
69
|
+
description: "Bespoke applications built with modern architectures and agile delivery — from MVPs to enterprise platforms."
|
|
70
|
+
icon: code
|
|
71
|
+
- title: "Cloud & DevOps"
|
|
72
|
+
description: "AWS, Azure, GCP — migration, infrastructure-as-code, Kubernetes, and 24/7 managed services."
|
|
73
|
+
icon: cloud
|
|
74
|
+
- title: "AI & Data"
|
|
75
|
+
description: "Machine learning, LLM integration, data pipelines, and analytics that turn information into competitive advantage."
|
|
76
|
+
icon: brain
|
|
77
|
+
- title: "Cybersecurity"
|
|
78
|
+
description: "Security audits, SOC services, compliance frameworks, and zero-trust architecture for regulated industries."
|
|
79
|
+
icon: shield
|
|
80
|
+
- title: "Team Extension"
|
|
81
|
+
description: "Embedded engineering squads that scale from 1 specialist to 50-person delivery teams within weeks."
|
|
82
|
+
icon: users
|
|
83
|
+
- title: "Digital Transformation"
|
|
84
|
+
description: "Legacy modernization, process automation, and strategic advisory to accelerate your digital roadmap."
|
|
85
|
+
icon: rocket
|
|
86
|
+
settings:
|
|
87
|
+
spacing: large
|
|
88
|
+
|
|
89
|
+
# ───────────────────────────────────────────
|
|
90
|
+
# 4. COUNTERS — Impact numbers
|
|
91
|
+
# ───────────────────────────────────────────
|
|
92
|
+
- type: counters
|
|
93
|
+
heading: "Proven at *scale*"
|
|
94
|
+
items:
|
|
95
|
+
- number: "800"
|
|
96
|
+
label: "Engineers"
|
|
97
|
+
suffix: "+"
|
|
98
|
+
- number: "15"
|
|
99
|
+
label: "Years in Business"
|
|
100
|
+
suffix: "+"
|
|
101
|
+
- number: "200"
|
|
102
|
+
label: "Projects Delivered"
|
|
103
|
+
suffix: "+"
|
|
104
|
+
- number: "6"
|
|
105
|
+
label: "European Offices"
|
|
106
|
+
settings:
|
|
107
|
+
background: dark
|
|
108
|
+
spacing: large
|
|
109
|
+
|
|
110
|
+
# ───────────────────────────────────────────
|
|
111
|
+
# 5. TEAM — Human element (Halo Effect)
|
|
112
|
+
# ───────────────────────────────────────────
|
|
113
|
+
- type: text_with_image
|
|
114
|
+
heading: "Your dedicated engineering team"
|
|
115
|
+
body: "We don't outsource. Every project is staffed with senior engineers from our European offices — architects, domain experts, and delivery leads who stay with you from discovery to production. Our teams embed with your organization, learn your codebase, and operate as an extension of your engineering department."
|
|
116
|
+
image: "/static/images/team-collaboration.jpg"
|
|
117
|
+
image_alt: "LokaTech engineering team collaborating on system architecture"
|
|
118
|
+
image_position: right
|
|
119
|
+
cta_text: "Meet Our Team"
|
|
120
|
+
cta_url: "/about"
|
|
121
|
+
settings:
|
|
122
|
+
spacing: large
|
|
123
|
+
background: light
|
|
124
|
+
|
|
125
|
+
# ───────────────────────────────────────────
|
|
126
|
+
# 6. CASE STUDIES — Featured results
|
|
127
|
+
# ───────────────────────────────────────────
|
|
128
|
+
- type: features
|
|
129
|
+
heading: "Real results for *real enterprises*"
|
|
130
|
+
subheading: "See how we've helped industry leaders transform their technology."
|
|
131
|
+
columns: "3"
|
|
132
|
+
items:
|
|
133
|
+
- title: "Banking Platform Modernization"
|
|
134
|
+
description: "Migrated a legacy core banking system to microservices for a Tier-1 European bank. 85% faster deployments, 99.99% uptime, €2.4M annual savings."
|
|
135
|
+
icon: building
|
|
136
|
+
- title: "Healthcare AI Pipeline"
|
|
137
|
+
description: "Built a real-time ML pipeline processing 2M+ patient records daily with full HIPAA compliance. Reduced diagnostic wait times by 40%."
|
|
138
|
+
icon: heart
|
|
139
|
+
- title: "Retail Cloud Migration"
|
|
140
|
+
description: "Moved 40+ applications to AWS for a Fortune 500 retailer. 60% infrastructure cost reduction, 3× performance improvement, zero downtime."
|
|
141
|
+
icon: shopping-cart
|
|
142
|
+
settings:
|
|
143
|
+
spacing: large
|
|
144
|
+
background: light
|
|
145
|
+
|
|
146
|
+
# ───────────────────────────────────────────
|
|
147
|
+
# 6. TESTIMONIALS — Social proof from clients
|
|
148
|
+
# ───────────────────────────────────────────
|
|
149
|
+
- type: testimonials
|
|
150
|
+
heading: "What our *clients* say"
|
|
151
|
+
items:
|
|
152
|
+
- quote: "LokaTech replaced our three offshore vendors with a single integrated team. Delivery speed doubled and defect rate dropped by 70%. They're now our strategic technology partner."
|
|
153
|
+
author: "Thomas Müller"
|
|
154
|
+
role: "CTO, Deutsche Industriebank"
|
|
155
|
+
- quote: "The cloud migration was the smoothest infrastructure project we've run in 15 years. LokaTech's team understood our regulatory constraints from day one and delivered on every milestone."
|
|
156
|
+
author: "Dr. Sarah van den Berg"
|
|
157
|
+
role: "VP Engineering, Roche Digital"
|
|
158
|
+
- quote: "We went from idea to production ML pipeline in 12 weeks. Their AI team didn't just build — they transferred knowledge so our internal team could maintain and extend the system."
|
|
159
|
+
author: "Marek Kowalczyk"
|
|
160
|
+
role: "Head of Data, mBank"
|
|
161
|
+
settings:
|
|
162
|
+
spacing: large
|
|
163
|
+
background: light
|
|
164
|
+
|
|
165
|
+
# ───────────────────────────────────────────
|
|
166
|
+
# 7. INSIGHTS — Latest articles (inline)
|
|
167
|
+
# ───────────────────────────────────────────
|
|
168
|
+
- type: blog_listing
|
|
169
|
+
heading: "Latest *insights*"
|
|
170
|
+
items:
|
|
171
|
+
- title: "Platform Engineering: Building Internal Developer Portals That Teams Actually Use"
|
|
172
|
+
url: "/articles/platform-engineering-internal-developer-portals"
|
|
173
|
+
excerpt: "How we treat internal platforms as products, not tickets — and what that means for golden paths, self-service, and measurable developer experience."
|
|
174
|
+
image: "/static/images/hero-bg.png"
|
|
175
|
+
date: "Mar 20, 2026"
|
|
176
|
+
- title: "Fine-Tuning LLMs on Enterprise Data: When It Helps — and When It Hurts"
|
|
177
|
+
url: "/articles/llm-fine-tuning-enterprise-data"
|
|
178
|
+
excerpt: "A practical look at supervised fine-tuning for domain language, data governance constraints, and the baseline you should beat with retrieval before you train."
|
|
179
|
+
image: "/static/images/hero-bg.png"
|
|
180
|
+
date: "Mar 18, 2026"
|
|
181
|
+
- title: "Event-Driven Microservices: Patterns We Reach For — and the Coupling We Avoid"
|
|
182
|
+
url: "/articles/event-driven-architecture-microservices"
|
|
183
|
+
excerpt: "From outbox and idempotent consumers to saga trade-offs: how we design event-driven systems that stay understandable as they grow."
|
|
184
|
+
image: "/static/images/hero-bg.png"
|
|
185
|
+
date: "Mar 15, 2026"
|
|
186
|
+
settings:
|
|
187
|
+
spacing: large
|
|
188
|
+
|
|
189
|
+
# ───────────────────────────────────────────
|
|
190
|
+
# 9. STRATEGY — Peak-end personal touch
|
|
191
|
+
# ───────────────────────────────────────────
|
|
192
|
+
- type: text_with_image
|
|
193
|
+
heading: "From first call to production"
|
|
194
|
+
body: "Every engagement starts with a 60-minute discovery workshop led by a solution architect and a domain expert. We map your challenges, evaluate options, and deliver a concrete roadmap — before a single line of code is written. No sales pitch, no generic proposals. Just engineering clarity."
|
|
195
|
+
image: "/static/images/team-strategy-session.jpg"
|
|
196
|
+
image_alt: "LokaTech architects reviewing cloud infrastructure strategy"
|
|
197
|
+
image_position: left
|
|
198
|
+
cta_text: "Book a Workshop"
|
|
199
|
+
cta_url: "/contact"
|
|
200
|
+
settings:
|
|
201
|
+
spacing: large
|
|
202
|
+
background: light
|
|
203
|
+
|
|
204
|
+
# ───────────────────────────────────────────
|
|
205
|
+
# 10. CTA — Strong closing
|
|
206
|
+
# ───────────────────────────────────────────
|
|
207
|
+
- type: cta
|
|
208
|
+
eyebrow: "Ready to start?"
|
|
209
|
+
heading: "Let's build something extraordinary"
|
|
210
|
+
description: "Tell us about your project. Our solution architects will respond within 24 hours with a tailored proposal."
|
|
211
|
+
button_text: "Start a Conversation"
|
|
212
|
+
button_url: "/contact"
|
|
213
|
+
secondary_text: "View Our Services"
|
|
214
|
+
secondary_url: "/services"
|
|
215
|
+
settings:
|
|
216
|
+
background: dark
|
|
217
|
+
spacing: large
|
|
218
|
+
|
|
219
|
+
# ───────────────────────────────────────────
|
|
220
|
+
# 9. AWARDS — Logo marquee
|
|
221
|
+
# ───────────────────────────────────────────
|
|
222
|
+
- type: logo_slider
|
|
223
|
+
heading: "Awards & Certifications"
|
|
224
|
+
items:
|
|
225
|
+
- alt: "ISO 27001"
|
|
226
|
+
image: "https://placehold.co/120x60/e2e8f0/64748b?text=ISO+27001"
|
|
227
|
+
- alt: "AWS Partner"
|
|
228
|
+
image: "https://placehold.co/120x60/e2e8f0/64748b?text=AWS+Partner"
|
|
229
|
+
- alt: "Microsoft Gold"
|
|
230
|
+
image: "https://placehold.co/120x60/e2e8f0/64748b?text=Microsoft+Gold"
|
|
231
|
+
- alt: "Clutch Top 100"
|
|
232
|
+
image: "https://placehold.co/120x60/e2e8f0/64748b?text=Clutch+Top+100"
|
|
233
|
+
- alt: "Great Place to Work"
|
|
234
|
+
image: "https://placehold.co/120x60/e2e8f0/64748b?text=GPTW"
|
|
235
|
+
settings:
|
|
236
|
+
spacing: medium
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Berlin"
|
|
3
|
+
type: location
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: berlin
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
city: "Berlin"
|
|
10
|
+
country: "Germany"
|
|
11
|
+
address: "Friedrichstraße 123, 10117 Berlin"
|
|
12
|
+
employee_count: 80
|
|
13
|
+
specializations: "Consulting, Digital Transformation"
|
|
14
|
+
photo: "https://placehold.co/1200x630/e2e8f0/64748b?text=Berlin+Office"
|
|
15
|
+
seo:
|
|
16
|
+
title: "Berlin Office — LokaTech Solutions"
|
|
17
|
+
description: "LokaTech Berlin office. 80 professionals specializing in consulting and digital transformation for the DACH market."
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
Opened in 2018, the Berlin office is LokaTech's gateway to the DACH market — Germany, Austria, and Switzerland. Located on Friedrichstraße in the heart of Berlin's business district, the 80-person team combines consulting expertise with engineering delivery to serve German-speaking enterprise clients who value both strategic vision and hands-on execution.
|
|
21
|
+
|
|
22
|
+
The Berlin team focuses on digital transformation consulting, enterprise architecture, and pre-sales engineering. With native German-speaking consultants and architects, the office provides the cultural fit and language capabilities that DACH enterprise clients expect. The team works closely with engineering centers in Warsaw, Kraków, and Wrocław, acting as the client-facing interface for delivery teams across Poland. Berlin has been instrumental in winning several of LokaTech's largest engagements, including the core banking modernization project for a top-10 European bank.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Kraków"
|
|
3
|
+
type: location
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: krakow
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
city: "Kraków"
|
|
10
|
+
country: "Poland"
|
|
11
|
+
address: "ul. Pawia 5, 31-154 Kraków"
|
|
12
|
+
employee_count: 200
|
|
13
|
+
specializations: "Custom Software, Data Engineering"
|
|
14
|
+
photo: "https://placehold.co/1200x630/e2e8f0/64748b?text=Krakow+Office"
|
|
15
|
+
seo:
|
|
16
|
+
title: "Kraków Office — LokaTech Solutions"
|
|
17
|
+
description: "LokaTech Kraków development center. 200 engineers specializing in custom software development and data engineering."
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
Opened in 2011, the Kraków office is LokaTech's second-largest development center and a powerhouse for custom software development and data engineering. Located near the main railway station in a modern business campus, the 200-person team benefits from Kraków's vibrant tech ecosystem and its deep pool of talent from AGH University of Science and Technology and the Jagiellonian University.
|
|
21
|
+
|
|
22
|
+
The Kraków team has built a particularly strong reputation in Java and Python development, with senior engineers who have contributed to open-source projects including Apache Kafka, Spring Framework, and dbt. The office also houses our primary data engineering practice, serving clients in financial services and healthcare who need scalable data pipelines and real-time analytics platforms. The team runs a monthly "Kraków Tech Talks" meetup that draws 100+ attendees from the local developer community.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "London"
|
|
3
|
+
type: location
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: london
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
city: "London"
|
|
10
|
+
country: "United Kingdom"
|
|
11
|
+
address: "1 Canada Square, Canary Wharf, London E14 5AB"
|
|
12
|
+
employee_count: 50
|
|
13
|
+
specializations: "Financial Services, Fintech"
|
|
14
|
+
photo: "https://placehold.co/1200x630/e2e8f0/64748b?text=London+Office"
|
|
15
|
+
seo:
|
|
16
|
+
title: "London Office — LokaTech Solutions"
|
|
17
|
+
description: "LokaTech London office in Canary Wharf. 50 professionals specializing in financial services and fintech solutions."
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
The London office, established in 2022, positions LokaTech at the center of Europe's largest financial services market. Located in Canary Wharf — surrounded by the headquarters of major global banks, insurers, and fintech companies — the 50-person team specializes in financial services technology, regulatory compliance, and fintech solutions.
|
|
21
|
+
|
|
22
|
+
The London team includes senior banking technology consultants, solution architects with deep capital markets experience, and client relationship managers who understand the unique demands of UK financial regulation (FCA, PRA). Proximity to clients in the City and Canary Wharf enables the rapid, face-to-face collaboration that complex financial services engagements require. The office also serves as a launchpad for LokaTech's expanding relationships with UK-based global enterprises outside financial services, including retail, telecommunications, and energy companies.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Warsaw — Headquarters"
|
|
3
|
+
type: location
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: warsaw
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
city: "Warsaw"
|
|
10
|
+
country: "Poland"
|
|
11
|
+
address: "ul. Marszałkowska 100, 00-026 Warsaw"
|
|
12
|
+
employee_count: 350
|
|
13
|
+
specializations: "Cloud, AI, Enterprise Architecture"
|
|
14
|
+
photo: "/static/images/office-warsaw.png"
|
|
15
|
+
seo:
|
|
16
|
+
title: "Warsaw Office — LokaTech Solutions Headquarters"
|
|
17
|
+
description: "LokaTech Warsaw headquarters. 350 engineers specializing in cloud, AI, and enterprise architecture. ul. Marszałkowska 100."
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
Warsaw is where LokaTech began in 2008, and it remains the heart of our operations. Our headquarters at ul. Marszałkowska 100 occupies three floors of a modern office building in the city center, housing 350 engineers, our executive team, and the central operations functions that support all European offices.
|
|
21
|
+
|
|
22
|
+
The Warsaw office is home to our largest engineering teams, including the Cloud & Infrastructure practice, the AI & Data practice, and the Enterprise Architecture competence center. The office features dedicated collaboration spaces, a hardware lab for IoT and edge computing projects, and a 50-seat auditorium used for internal tech talks, client workshops, and community meetups. Warsaw's position as one of Europe's fastest-growing tech hubs gives us access to exceptional talent from the city's top universities, including the Warsaw University of Technology, the University of Warsaw, and the Polish Academy of Sciences.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Wrocław"
|
|
3
|
+
type: location
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: wroclaw
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
city: "Wrocław"
|
|
10
|
+
country: "Poland"
|
|
11
|
+
address: "ul. Świdnicka 40, 50-024 Wrocław"
|
|
12
|
+
employee_count: 120
|
|
13
|
+
specializations: "Cybersecurity, DevOps"
|
|
14
|
+
photo: "https://placehold.co/1200x630/e2e8f0/64748b?text=Wroclaw+Office"
|
|
15
|
+
seo:
|
|
16
|
+
title: "Wrocław Office — LokaTech Solutions"
|
|
17
|
+
description: "LokaTech Wrocław security center of excellence. 120 engineers specializing in cybersecurity, DevOps, and SRE."
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
The Wrocław office, established in 2016, serves as LokaTech's security center of excellence. The 120-person team specializes in cybersecurity, DevOps, and site reliability engineering — disciplines that demand both deep technical expertise and operational rigor. Located in the city center on ul. Świdnicka, the office includes a dedicated security operations lab where the team conducts penetration testing, red team exercises, and security research.
|
|
21
|
+
|
|
22
|
+
Wrocław's growing reputation as a cybersecurity hub in Poland, anchored by the Wrocław University of Science and Technology's strong security research program, makes it an ideal location for this practice. Our Wrocław team holds more security certifications per capita than any other LokaTech office, including OSCP, CISSP, and AWS Security Specialty. The team also runs LokaTech's internal DevOps platform, providing CI/CD infrastructure, Kubernetes cluster management, and monitoring solutions used by engineering teams across all offices.
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "About LokaTech Solutions"
|
|
3
|
+
type: page
|
|
4
|
+
status: published
|
|
5
|
+
langcode: en
|
|
6
|
+
slug: about
|
|
7
|
+
date: 2026-03-21
|
|
8
|
+
fields:
|
|
9
|
+
subtitle: "We engineer technology that moves enterprises forward"
|
|
10
|
+
seo:
|
|
11
|
+
title: "About LokaTech Solutions — Enterprise IT Services"
|
|
12
|
+
description: "Founded in 2008 in Warsaw. 800+ engineers across 6 European offices. Custom software, cloud, AI, cybersecurity for enterprise clients."
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Our Story
|
|
16
|
+
|
|
17
|
+
LokaTech Solutions was founded in 2008 in Warsaw, Poland, by a team of five engineers who believed that enterprise IT services could be delivered differently — with genuine technical excellence, transparent partnerships, and a relentless focus on outcomes over output. What started as a small custom software shop serving local businesses has grown into one of Central Europe's leading technology services companies, with over 800 engineers across six offices in Poland, Germany, and the United Kingdom.
|
|
18
|
+
|
|
19
|
+
Our growth has been organic and deliberate. We didn't chase scale for its own sake. Every new office, every new service line, and every new hire was driven by client demand and a commitment to maintaining the engineering culture that defines us. When a Fortune 500 bank needed cloud migration expertise, we built a dedicated cloud practice. When pharmaceutical clients needed AI capabilities, we invested in a data science team. Our clients' challenges became our roadmap.
|
|
20
|
+
|
|
21
|
+
## Our Mission
|
|
22
|
+
|
|
23
|
+
**We engineer technology that moves enterprises forward.**
|
|
24
|
+
|
|
25
|
+
This isn't a slogan — it's a filter we apply to every decision. "Engineer" because we build with rigor, not guesswork. "Technology" because it's what we know deeply. "Moves enterprises forward" because our work has no value unless it creates measurable business outcomes for our clients.
|
|
26
|
+
|
|
27
|
+
## Our Values
|
|
28
|
+
|
|
29
|
+
**Excellence** — We hire the top 5% of engineers and give them the tools, training, and autonomy to do their best work. Code reviews aren't bureaucracy — they're how we learn from each other. Every project gets our A-team because every client deserves it.
|
|
30
|
+
|
|
31
|
+
**Partnership** — We don't do "throw it over the wall" consulting. Our teams embed with our clients, understand their business context, and take ownership of outcomes. The best compliment we receive is when a client says our engineers feel like part of their team.
|
|
32
|
+
|
|
33
|
+
**Innovation** — We invest 15% of our revenue in R&D, run quarterly innovation sprints, and maintain partnerships with AWS, Microsoft, and Google. Our engineers contribute to open source, speak at conferences, and publish technical content. Staying at the frontier isn't optional in our industry.
|
|
34
|
+
|
|
35
|
+
**Integrity** — We tell clients what they need to hear, not what they want to hear. If a project isn't right for us, we say so. If a deadline is unrealistic, we flag it early. Trust is built in uncomfortable conversations, and we've found that radical honesty creates stronger partnerships than polished presentations.
|
|
36
|
+
|
|
37
|
+
## Key Milestones
|
|
38
|
+
|
|
39
|
+
**2008** — Founded in Warsaw by five engineers. First client: a Polish financial services company needing a custom trading platform.
|
|
40
|
+
|
|
41
|
+
**2011** — Opened the Kraków office to access the city's strong technical talent pool. Expanded into healthcare and manufacturing sectors.
|
|
42
|
+
|
|
43
|
+
**2014** — Reached 200 engineers. Launched the cloud practice in response to enterprise migration demand. First AWS partnership.
|
|
44
|
+
|
|
45
|
+
**2016** — Opened the Wrocław office with a focus on cybersecurity and DevOps. Achieved ISO 27001 certification.
|
|
46
|
+
|
|
47
|
+
**2018** — Expanded into Germany with the Berlin office. Won the first Fortune 500 client (a top-10 European bank).
|
|
48
|
+
|
|
49
|
+
**2020** — Launched the Data & AI practice. Scaled remote delivery during the pandemic without missing a single client deadline.
|
|
50
|
+
|
|
51
|
+
**2022** — Opened the London office to serve UK financial services clients. Reached 600 engineers.
|
|
52
|
+
|
|
53
|
+
**2024** — Surpassed 800 engineers. Named in Clutch Top 100 IT Services Companies globally. SOC 2 Type II certified.
|
|
54
|
+
|
|
55
|
+
**2026** — Celebrating 18 years of delivering enterprise technology. 200+ projects completed. Expanding AI and platform engineering capabilities.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
uuid: "c3d4e5f6-a7b8-9012-cdef-123456789013"
|
|
3
|
+
title: "O nas"
|
|
4
|
+
status: published
|
|
5
|
+
langcode: pl
|
|
6
|
+
date: 2026-03-15
|
|
7
|
+
translation_of: "c3d4e5f6-a7b8-9012-cdef-123456789012"
|
|
8
|
+
fields:
|
|
9
|
+
subtitle: "Dowiedz się więcej o tym projekcie"
|
|
10
|
+
seo:
|
|
11
|
+
description: "O tej stronie opartej na Barka i zespole, który za nią stoi."
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# O nas
|
|
15
|
+
|
|
16
|
+
Wierzymy, że zarządzanie treścią powinno być proste, przejrzyste i przyjazne dla programistów.
|
|
17
|
+
|
|
18
|
+
## Nasza filozofia
|
|
19
|
+
|
|
20
|
+
Barka powstała z przekonania, że najlepszy CMS to taki, który nie stoi na drodze. Twoje treści żyją w plikach, które posiadasz — nie w zamkniętej bazie danych.
|
|
21
|
+
|
|
22
|
+
### Pliki na pierwszym miejscu
|
|
23
|
+
|
|
24
|
+
Każdy element treści to plik Markdown lub YAML. Możesz go czytać, porównywać i wersjonować za pomocą Git — bez potrzeby narzędzi do eksportu.
|
|
25
|
+
|
|
26
|
+
### Progresywne ulepszanie
|
|
27
|
+
|
|
28
|
+
Zacznij od plików statycznych. Dodaj bazę danych, gdy potrzebujesz zapytań. Dodaj panel administracyjny, gdy dołączą redaktorzy. Barka rośnie razem z Twoim projektem.
|
|
29
|
+
|
|
30
|
+
### Brak uzależnienia od dostawcy
|
|
31
|
+
|
|
32
|
+
Twoje treści są zawsze przenośne. Przenieś je do innego systemu, renderuj innym narzędziem lub po prostu czytaj jako zwykły tekst.
|
|
33
|
+
|
|
34
|
+
## Kontakt
|
|
35
|
+
|
|
36
|
+
Napisz do nas na [hello@example.com](mailto:hello@example.com).
|