From 32e310a5ffec457546cdbc24878cc45fa168f1a5 Mon Sep 17 00:00:00 2001 From: iliya Date: Mon, 23 Mar 2026 17:21:25 +0200 Subject: [PATCH] feat(landing): add new dist file and enhance AppLogo and HeroDemoVideo components - Introduced a new symbolic link for the dist directory. - Updated AppLogo.vue to improve text styling with a new gradient for light theme. - Modified HeroDemoVideo.vue to use a dynamic video source and added aspect ratio styling for better layout. --- landing/components/common/AppLogo.vue | 14 ++++++++++---- landing/components/ui/HeroDemoVideo.vue | 4 +++- landing/dist | 1 + 3 files changed, 14 insertions(+), 5 deletions(-) create mode 120000 landing/dist diff --git a/landing/components/common/AppLogo.vue b/landing/components/common/AppLogo.vue index 5922b620..8cea3b4c 100644 --- a/landing/components/common/AppLogo.vue +++ b/landing/components/common/AppLogo.vue @@ -41,10 +41,16 @@ font-weight: 700; font-size: 14px; letter-spacing: 0.05em; -} - -.v-theme--dark .app-logo__text { - background: linear-gradient(135deg, #e0e6ff, #00f0ff); + background: linear-gradient(135deg, #ffffff, #00f0ff); + -webkit-background-clip: text; + background-clip: text; + -webkit-text-fill-color: transparent; +} + + +