Add initial page structure for Clients, Orders and Services pages#18
Merged
reenatoteixeira merged 3 commits intostagefrom Mar 30, 2026
Merged
Add initial page structure for Clients, Orders and Services pages#18reenatoteixeira merged 3 commits intostagefrom
reenatoteixeira merged 3 commits intostagefrom
Conversation
…with table and actions
…ure with table and actions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request refactors the Clients, Orders, and Services pages to introduce reusable table components, add entity-specific type definitions, and improve the overall user interface for managing these entities. The changes lay the groundwork for CRUD operations by adding placeholder data, action buttons, and TODO comments for future database integration and routing.
Key changes include:
UI and Table Refactoring:
ClientsPage,OrdersPage, andServicesPagewith a consistent table-based layout using the sharedTablecomponent. Each page now supports search, pagination, and action buttons for editing and deleting entries, with "New" buttons to add new entities. [1] [2] [3] [4] [5] [6]Type Definitions and Exports:
Client,Order, andServiceentities, ensuring type safety and consistency across modules. [1] [2] [3]index.tsfiles for easier imports throughout the codebase. [1] [2] [3]Preparation for CRUD Operations:
These changes establish a scalable foundation for entity management and set up clear next steps for database integration and routing.