Do I need React, or just a website?
Most businesses need a website, and I will say so rather than sell an application. React earns its place when a screen has to react to the person using it — an inventory grid that filters instantly, an order board that updates as staff work through it. If your requirement is pages people read, React adds cost and removes nothing.
What is the difference between React and Next.js?
React is the library that draws interactive interfaces. Next.js is a framework on top of React that adds server rendering, routing and image handling — the things a public website needs in order to rank. For a marketing site you want Next.js. For an internal dashboard behind a login, plain React is simpler and cheaper.
Should we build custom or buy existing software?
Buy, if a packaged product covers roughly eighty percent of what you need at a sensible licence cost — and I will tell you when that is the case. Building makes sense when your process is genuinely unusual, when per-user licences scale badly with your headcount, or when you need it connected to systems the packaged product will not talk to.
Who owns the code and what happens if you are unavailable?
You own it outright. The repository goes to your account, the setup is documented, and it is written with standard tools any React developer knows — no unusual frameworks, no undocumented shortcuts. You should be able to hand it to another developer without them needing to speak to me first.
Can it connect to Tally or the software we already use?
Usually yes, and the method depends on what you run. Tally exposes an XML interface that can be read and written to, most modern ERPs have an API, and where neither exists we fall back to a scheduled import and export. What matters is agreeing early which system holds the master copy of the data.
Will it work when the internet drops?
It needs designing for that specifically. Data already loaded stays visible, forms hold what was typed rather than clearing, and submissions queue and retry when the connection returns. Full offline operation is a larger build, so it is worth being honest about how often the connection actually fails before paying for it.
How long does a dashboard take to build?
A focused one covering a single workflow is typically six to ten weeks including testing with your actual staff. Systems that try to cover every department at once take considerably longer and usually fail. Shipping one workflow that people genuinely use beats launching five that they route around.
What does it cost to run each month?
Far less than most people assume. A dashboard for a small team typically runs on hosting and a database costing a few thousand rupees a month, sometimes less, and there are no per-user licences because you own the software. The real ongoing cost is occasional development when you want changes, on your schedule.