diff --git a/public/icons/github-d.png b/public/icons/github-d.png new file mode 100644 index 00000000..4bb2db90 Binary files /dev/null and b/public/icons/github-d.png differ diff --git a/public/icons/github.png b/public/icons/github.png new file mode 100644 index 00000000..9490ffc6 Binary files /dev/null and b/public/icons/github.png differ diff --git a/src/pages/Home.vue b/src/pages/Home.vue index 516bff06..15282a73 100644 --- a/src/pages/Home.vue +++ b/src/pages/Home.vue @@ -1,7 +1,11 @@ \ No newline at end of file + +
+ +
+ diff --git a/src/shared/lib/i18n/locales/en-US.ts b/src/shared/lib/i18n/locales/en-US.ts index 6a9ef3d7..2946a294 100644 --- a/src/shared/lib/i18n/locales/en-US.ts +++ b/src/shared/lib/i18n/locales/en-US.ts @@ -183,6 +183,13 @@ export default { links: ['About', 'Kanban', 'Members', 'Collaborative', 'Chats', 'Plans'], login: 'Log In', reg: 'Get started' + }, + about: { + tagline: 'Your path to perfection', + description: + 'Jenda is a cloud-based program for efficient collaborative and individual project and task management.', + badge: 'Core: Task Boards, Real-Time Tracking', + btn: 'Get started' } } }; diff --git a/src/shared/lib/i18n/locales/ru-RU.ts b/src/shared/lib/i18n/locales/ru-RU.ts index d60b0298..633a8312 100644 --- a/src/shared/lib/i18n/locales/ru-RU.ts +++ b/src/shared/lib/i18n/locales/ru-RU.ts @@ -188,6 +188,13 @@ export default { links: ['О нас', 'Канбан', 'Участники', 'Совместная работа', 'Чаты', 'Планы'], login: 'Войти', reg: 'Зарегистрироваться' + }, + about: { + tagline: 'Ваш путь к совершенству', + description: + 'Jenda — это облачная программа для эффективного управления проектами и задачами как в команде, так и индивидуально.', + badge: 'Основные функции: Доски задач, Отслеживание в реальном времени', + btn: 'Зарегистрироваться' } } }; diff --git a/src/shared/lib/i18n/locales/zh-CN.ts b/src/shared/lib/i18n/locales/zh-CN.ts index 7c1326cd..be12e147 100644 --- a/src/shared/lib/i18n/locales/zh-CN.ts +++ b/src/shared/lib/i18n/locales/zh-CN.ts @@ -182,6 +182,12 @@ export default { links: ['关于我们', '看板', '成员', '协作', '聊天', '计划'], login: '登录', reg: '注册' + }, + about: { + tagline: '通往完美的道路', + description: 'Jenda 是一款基于云的程序,用于高效协作和个人项目与任务管理。', + badge: '核心功能:任务板、实时跟踪', + btn: '注册' } } }; diff --git a/src/shared/ui/button/UiButton.vue b/src/shared/ui/button/UiButton.vue index aab3df0f..d6d19315 100644 --- a/src/shared/ui/button/UiButton.vue +++ b/src/shared/ui/button/UiButton.vue @@ -132,7 +132,7 @@ withDefaults( :global(html.dark) { .default { - background-color: var(--zinc-200); + background-color: var(--zinc-100); color: var(--zinc-950); @include on-hover { diff --git a/src/widgets/layout/ui/header/HeaderWelcome.vue b/src/widgets/layout/ui/header/HeaderWelcome.vue index 909f35b0..d15fca93 100644 --- a/src/widgets/layout/ui/header/HeaderWelcome.vue +++ b/src/widgets/layout/ui/header/HeaderWelcome.vue @@ -180,9 +180,9 @@ const links = computed(() => { :global(html.dark) { .box { - background-color: rgba(var(--zinc-rgb-600), 0.4); + background-color: #313131; border-color: var(--zinc-600); - box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); + box-shadow: 0 3px 2px 0 rgb(0 0 0 / 0.05); } .separator { background-color: var(--zinc-600); diff --git a/src/widgets/welcome/index.ts b/src/widgets/welcome/index.ts new file mode 100644 index 00000000..5ecdd1f3 --- /dev/null +++ b/src/widgets/welcome/index.ts @@ -0,0 +1 @@ +export * from './ui'; diff --git a/src/widgets/welcome/ui/AboutSection.vue b/src/widgets/welcome/ui/AboutSection.vue new file mode 100644 index 00000000..a5b80d13 --- /dev/null +++ b/src/widgets/welcome/ui/AboutSection.vue @@ -0,0 +1,104 @@ + + + + + diff --git a/src/widgets/welcome/ui/index.ts b/src/widgets/welcome/ui/index.ts new file mode 100644 index 00000000..f8582ab4 --- /dev/null +++ b/src/widgets/welcome/ui/index.ts @@ -0,0 +1,3 @@ +import AboutSection from './AboutSection.vue'; + +export { AboutSection }; diff --git a/yarn.lock b/yarn.lock index 331d4541..87a1ebab 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7344,4 +7344,4 @@ zhead@^2.2.4: zod@^3.22.4, zod@^3.23.8: version "3.23.8" resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d" - integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== + integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== \ No newline at end of file