From 4ec483fb03c509e19343c9b31fc7e9ea2ba63969 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 8 Apr 2026 10:52:50 +0000 Subject: [PATCH 1/2] feat(ui): implement luxury design system and FSD architecture Co-authored-by: beginwebdev2002 <102213457+beginwebdev2002@users.noreply.github.com> --- frontend/angular.json | 15 +- frontend/index.html | 325 +--- frontend/package-lock.json | 1371 ++++++++++++++++- frontend/package.json | 7 +- frontend/playwright-report/index.html | 2 +- frontend/postcss.config.cjs | 6 + .../ui/entity-card/entity-card.component.html | 20 +- frontend/src/styles.scss | 281 ++++ frontend/src/widgets/layouts/index.ts | 1 + .../layouts/standard-layout.component.ts | 84 + frontend/tailwind.config.ts | 66 + frontend/tests/example.spec.ts | 4 +- package-lock.json | 1158 +++++++++++++- package.json | 6 +- 14 files changed, 2984 insertions(+), 362 deletions(-) create mode 100644 frontend/postcss.config.cjs create mode 100644 frontend/src/styles.scss create mode 100644 frontend/src/widgets/layouts/standard-layout.component.ts create mode 100644 frontend/tailwind.config.ts diff --git a/frontend/angular.json b/frontend/angular.json index 6678eac..f2ad0a7 100644 --- a/frontend/angular.json +++ b/frontend/angular.json @@ -30,6 +30,9 @@ ], "assets": [ "./public" + ], + "styles": [ + "src/styles.scss" ] }, "configurations": { @@ -48,13 +51,19 @@ "sourceMap": true }, "en": { - "localize": ["en-US"] + "localize": [ + "en-US" + ] }, "ru": { - "localize": ["ru"] + "localize": [ + "ru" + ] }, "tg": { - "localize": ["tg"] + "localize": [ + "tg" + ] } }, "defaultConfiguration": "production" diff --git a/frontend/index.html b/frontend/index.html index 35b8b4a..c8f17a9 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -5,7 +5,7 @@