componenets standardization 1

This commit is contained in:
IGNY8 VPS (Salman)
2026-01-01 21:42:04 +00:00
parent c880e24fc0
commit a4691ad2da
95 changed files with 3597 additions and 1745 deletions

View File

@@ -116,6 +116,9 @@ const Help = lazy(() => import("./pages/Help/Help"));
// Components - Lazy loaded
const Components = lazy(() => import("./pages/Components"));
// UI Elements - Lazy loaded (Design System Reference)
const UIElements = lazy(() => import("./pages/UIElements"));
export default function App() {
@@ -279,6 +282,9 @@ export default function App() {
{/* Components (Showcase Page) */}
<Route path="/components" element={<Components />} />
{/* UI Elements (Design System - Non-indexable) */}
<Route path="/ui-elements" element={<UIElements />} />
</Route>
{/* Fallback Route */}