--- // Home page - WorkRoot IT Solutions import BaseLayout from '../layouts/BaseLayout.astro'; import SEO from '../components/SEO.astro'; import ClientLogos from '../components/ClientLogos.astro'; // Benefits/Features data const benefits = [ { icon: 'rocket', title: 'Rapid Development', description: 'Launch your product 3x faster with our agile methodology and proven frameworks.', }, { icon: 'shield', title: 'Enterprise Security', description: 'Bank-grade security protocols protecting your data and user privacy.', }, { icon: 'scale', title: 'Built to Scale', description: 'Infrastructure that grows with your business, from startup to enterprise.', }, { icon: 'support', title: '24/7 Support', description: 'Round-the-clock technical support ensuring your systems run smoothly.', }, ]; // Services data — outcome-led headlines with anchor slugs that deep-link // into the matching detail sections on /services. const services = [ { icon: 'code', slug: 'web-development', title: 'Web Development', outcome: 'Ship a fast, SEO-ready web product your customers actually convert on.', description: 'Angular, React, Next.js, Astro frontends backed by Spring Boot APIs — built for speed, scale, and search visibility.', features: ['Angular/React/Next.js', 'Spring Boot APIs', 'Astro Static Sites'], }, { icon: 'smartphone', slug: 'mobile-development', title: 'Mobile Apps', outcome: 'Launch on iOS and Android from a single codebase — without the native-team overhead.', description: 'Cross-platform React Native and Expo apps with offline-first sync, push notifications, and store-ready builds.', features: ['React Native / Expo', 'iOS & Android', 'Offline-First Apps'], }, { icon: 'brain', slug: 'erp-solutions', title: 'ERP & Enterprise Systems', outcome: 'Replace spreadsheets and ageing tools with one system your operations team trusts.', description: 'Custom ERP, CRM, and admin platforms designed around your real workflows — already running in universities and government bodies.', features: ['University Management', 'Police Management', 'Crematorium SCMS'], }, { icon: 'cloud', slug: 'government-systems', title: 'Government IT Solutions', outcome: 'Roll out secure, compliant platforms across districts without rewriting them for each one.', description: 'Multi-district deployments with role-based access, audit trails, and the uptime public services require.', features: ['Multi-District Deployments', 'Secure & Compliant', 'High Availability'], }, ]; // How it works steps const steps = [ { number: '01', title: 'Discovery', description: 'We understand your business goals, challenges, and technical requirements.', }, { number: '02', title: 'Planning', description: 'Strategic roadmap with clear milestones, timelines, and deliverables.', }, { number: '03', title: 'Development', description: 'Agile sprints with regular check-ins and iterative improvements.', }, { number: '04', title: 'Launch & Support', description: 'Smooth deployment with ongoing maintenance and optimization.', }, ]; // Testimonials data const testimonials = [ { quote: 'WorkRoot IT Solutions is very professional and responsive. They built PLNR Financing platform with great attention to detail. The Angular + Spring Boot stack works flawlessly and their ongoing support is excellent.', author: 'Ajay Pruthi', role: 'Founder, PLNR', avatar: 'AP', rating: 5, }, { quote: 'The FPC Cart e-commerce platform delivered by WorkRoot exceeded our expectations. Built with Astro and Golang, it loads incredibly fast and handles our product catalog seamlessly. Their team understood our business needs perfectly.', author: 'Dhirendra Singh', role: 'Director, RENTEC', avatar: 'DS', rating: 5, }, { quote: 'WorkRoot delivered our University Management System for IIT Patna on time and within budget. The Next.js + Spring Boot architecture is robust and scalable. They are a reliable technology partner for complex enterprise projects.', author: 'Dilip Raj', role: 'Director, MOC Soft Technologies Pvt Ltd', avatar: 'DR', rating: 5, }, ]; // Stats data const stats = [ { value: 20, suffix: '+', label: 'Projects Delivered', icon: 'briefcase' }, { value: 100, suffix: '%', label: 'Client Satisfaction', icon: 'heart' }, { value: 3, suffix: '+', label: 'Years in Business', icon: 'building' }, { value: 3, suffix: '', label: 'Team Members', icon: 'clock' }, ]; // FAQ data const faqs = [ { question: 'What technologies do you specialize in?', answer: 'We specialize in modern web and mobile technologies including Angular, React, Next.js, Astro, Spring Boot, Golang, and databases like MySQL and PostgreSQL. We also work with Expo for mobile development.', }, { question: 'How long does a typical project take?', answer: 'Project timelines vary based on complexity. A static website might take 2-4 weeks, while a complex government management system could take 6-24 months. We provide detailed timelines during the planning phase.', }, { question: 'Do you offer ongoing support after launch?', answer: 'Yes! We offer comprehensive support packages including bug fixes, security updates, performance monitoring, and feature enhancements. Our 24/7 support ensures your systems run smoothly.', }, { question: 'What is your development process?', answer: 'We follow an agile methodology with 2-week sprints, regular check-ins, and iterative development. You\'ll have full visibility into progress with access to staging environments and regular demos.', }, { question: 'Can you work with our existing team?', answer: 'Absolutely! We excel at collaborating with in-house teams. Whether you need to augment your team or prefer a fully managed solution, we adapt to your workflow and tools.', }, { question: 'How do you ensure project security?', answer: 'Security is built into every phase. We follow OWASP guidelines, conduct regular security audits, implement encryption, and ensure compliance with industry standards like GDPR and SOC 2.', }, ]; ---
Trusted by 20+ teams · Deployed across 11 districts

Custom Software That Powers Enterprises & Governments

WorkRoot designs, builds, and runs production-grade web, mobile, and ERP systems for startups, enterprises, and government bodies.

Free 30-min discovery call Reply within 1 business day No commitment

Powered By Industry Leaders

Angular
Spring Boot
Next.js
Astro
Golang
Why Choose Us

Built for Your Success

We don't just write code. We build solutions that drive measurable business results.

{benefits.map((benefit, index) => (
{benefit.icon === 'rocket' && ( )} {benefit.icon === 'shield' && ( )} {benefit.icon === 'scale' && ( )} {benefit.icon === 'support' && ( )}

{benefit.title}

{benefit.description}

))}
Our Services

Comprehensive Technology Solutions

From concept to deployment, we deliver end-to-end solutions tailored to your unique business needs.

{services.map((service, index) => (
{service.icon === 'code' && ( )} {service.icon === 'smartphone' && ( )} {service.icon === 'brain' && ( )} {service.icon === 'cloud' && ( )}

{service.title}

{service.outcome}

{service.description}

    {service.features?.map((feature) => (
  • {feature}
  • ))}
Learn more
{(index + 1).toString().padStart(2, '0')}
))}
Our Process

How We Work

A proven methodology that delivers results, on time and on budget.

{steps.map((step, index) => (
{/* Connecting line */} {index < steps.length - 1 && ( )}
{/* Number badge */}
{step.number}

{step.title}

{step.description}

{/* Decorative dot */}
))}
Track Record

Numbers That Matter

Our success is measured by the impact we create for our clients.

{stats.map((stat, index) => (
{/* Icon */}
{stat.icon === 'briefcase' && ( )} {stat.icon === 'heart' && ( )} {stat.icon === 'building' && ( )} {stat.icon === 'clock' && ( )}
{stat.value}{stat.suffix}
{stat.label}
))}
Client Stories

Loved by Teams Worldwide

Don't just take our word for it. Here's what our clients have to say about working with us.

FAQ

Common Questions

Everything you need to know about working with us. Can't find the answer you're looking for?

Chat with our team
{faqs.map((faq, index) => (
{faq.answer}
))}

Ready to ship your next production system?

Tell us about your project and we'll send back a free, no-obligation scope and timeline within one business day.

  • Free 30-min discovery call
  • Fixed-price scope & timeline
  • NDA on request

Prefer to reach out directly?