From 9de99ce3a5b35de3f76628f4fffef1db4e9cdd13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Neves?= Date: Mon, 15 Jun 2026 20:04:22 +0000 Subject: [PATCH] docs: update Architecture section with full ui component list The component tree in the Architecture section only listed 3 of the 11 shadcn/ui base components and used '...' as a placeholder. This updates the tree to show all 11 components in alphabetical order for accurate documentation. --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 698dd81..7080f31 100644 --- a/README.md +++ b/README.md @@ -107,10 +107,17 @@ Storybook will be available at `http://localhost:6006`. src/ ├── components/ │ ├── ui/ # shadcn/ui base components +│ │ ├── accordion.tsx +│ │ ├── alert.tsx +│ │ ├── badge.tsx │ │ ├── button.tsx -│ │ ├── input.tsx │ │ ├── card.tsx -│ │ └── ... +│ │ ├── dialog.tsx +│ │ ├── dropdown-menu.tsx +│ │ ├── input.tsx +│ │ ├── separator.tsx +│ │ ├── sheet.tsx +│ │ └── tooltip.tsx │ ├── header.tsx # App header with theme toggle & menu │ ├── search-input.tsx # Invoice/address input │ ├── invoice-details.tsx # Decoded invoice display