diff --git a/CutList.Web/Components/Pages/Jobs/Index.razor b/CutList.Web/Components/Pages/Jobs/Index.razor index 816186f..bb6ed96 100644 --- a/CutList.Web/Components/Pages/Jobs/Index.razor +++ b/CutList.Web/Components/Pages/Jobs/Index.razor @@ -18,6 +18,11 @@ +

+ Jobs organize the parts you need to cut for a project. Add parts with their required lengths and quantities, + assign stock materials, then run the optimizer to generate an efficient cut list that minimizes waste. +

+ @if (loading) {

Loading...

diff --git a/CutList.Web/Components/Pages/Materials/Index.razor b/CutList.Web/Components/Pages/Materials/Index.razor index 7b7ae0a..6230959 100644 --- a/CutList.Web/Components/Pages/Materials/Index.razor +++ b/CutList.Web/Components/Pages/Materials/Index.razor @@ -9,6 +9,11 @@ Add Material +

+ Manage your material catalog here. Materials define the types of stock you work with — shape, size, type, and + grade. Once added, materials can be assigned to jobs and used to generate optimized cut lists. +

+ @if (loading) {

Loading...

diff --git a/CutList.Web/Components/Pages/Stock/Index.razor b/CutList.Web/Components/Pages/Stock/Index.razor index 40fb751..674ff7a 100644 --- a/CutList.Web/Components/Pages/Stock/Index.razor +++ b/CutList.Web/Components/Pages/Stock/Index.razor @@ -11,6 +11,11 @@ Add Stock Item +

+ Stock items represent the specific lengths of material you have available for cutting. Each stock item links + a material to a length and tracks how many pieces you have on hand. +

+ @if (loading) {

Loading...