From 36b4e47a495d2cb1f0605c24044b4b092208f6fc Mon Sep 17 00:00:00 2001
From: vvtimofeev <108340247+vvtimofeev@users.noreply.github.com>
Date: Thu, 8 Aug 2024 19:17:36 +0300
Subject: [PATCH] feat: added Themer news topic (#251)
* feat: added Themer news topic
* fix: deleted extra files
---
public/locales/en/home.json | 6 +++---
public/locales/ru/home.json | 6 +++---
src/content/landing.ts | 6 +++---
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/public/locales/en/home.json b/public/locales/en/home.json
index 5a9d8851644..8eab1ee69e6 100644
--- a/public/locales/en/home.json
+++ b/public/locales/en/home.json
@@ -2,9 +2,9 @@
"header_title": "Build modern interfaces with the Gravity design system and libraries",
"header_actions_howToStart": "How to Start",
"news_title": "Recent updates",
- "news_items_item1": "500⭐️ for our UIKit! We just wanted to say thanks for all the support and feedback we've been getting. There's more to come, so stay tuned!",
- "news_items_item2": "We've released the PinInput component. You may need it to enter OTP or confirmation codes.",
- "news_items_item3": "We added a duration module to our date-utils library. It implements the ISO 8601 standard for durations. Here you can find more information about it.",
+ "news_items_item1": "We're thrilled to unveil Themer. Now you can easily customize our design system to your brand style and export your theme as a CSS file.",
+ "news_items_item2": "500⭐️ for our UIKit! We just wanted to say thanks for all the support and feedback we've been getting. There's more to come, so stay tuned!",
+ "news_items_item3": "We've released the PinInput component. You may need it to enter OTP or confirmation codes.",
"features_feature1_title": "Built on real-life experience",
"features_feature1_description": "Conceived as an in-house solution in response to real developers' needs, we released Gravity to the open-source community.",
"features_feature2_title": "First class design",
diff --git a/public/locales/ru/home.json b/public/locales/ru/home.json
index f8c73e9967d..aa05cd7071b 100644
--- a/public/locales/ru/home.json
+++ b/public/locales/ru/home.json
@@ -2,9 +2,9 @@
"header_title": "Создавайте современные интерфейсы с дизайн‑системой Gravity",
"header_actions_howToStart": "С чего начать",
"news_title": "Новости",
- "news_items_item1": "500⭐️ у UIKit! Просто хотим поблагодарить вас за поддержку и идеи. Впереди много нового, продолжайте следить за проектом!",
- "news_items_item2": "Мы выложили компонент PinInput. Он может пригодиться для ввода OTP кодов или подтверждений.",
- "news_items_item3": "Мы добавили модуль duration в библиотеку date-utils. Он реализует стандарт ISO 8601 для временных интервалов. Тут об этом можно почитать подробнее.",
+ "news_items_item1": "Мы запустили новый раздел Themer. В нём вы можете легко адаптировать нашу дизайн-систему к своему бренду и экспортировать результат в CSS файл.",
+ "news_items_item2": "500⭐️ у UIKit! Просто хотим поблагодарить вас за поддержку и идеи. Впереди много нового, продолжайте следить за проектом!",
+ "news_items_item3": "Мы выложили компонент PinInput. Он может пригодиться для ввода OTP кодов или подтверждений.",
"features_feature1_title": "Основано на реальном опыте использования",
"features_feature1_description": "Внутреннее решение в ответ на реальные потребности разработчиков: мы выпустили Gravity для open-source сообщества.",
"features_feature2_title": "Отличный дизайн",
diff --git a/src/content/landing.ts b/src/content/landing.ts
index 4c70468109e..4e5cfc8580f 100644
--- a/src/content/landing.ts
+++ b/src/content/landing.ts
@@ -68,15 +68,15 @@ export const getLanding = (t: TFunction): CustomPageContent => ({
title: t('home:news_title'),
items: [
{
- date: '2024-06-27T07:00:00.000Z',
+ date: '2024-08-08T16:00:00.000Z',
content: t('home:news_items_item1'),
},
{
- date: '2024-06-13T14:30:00.000Z',
+ date: '2024-06-27T07:00:00.000Z',
content: t('home:news_items_item2'),
},
{
- date: '2024-05-03T14:00:00.000Z',
+ date: '2024-06-13T14:30:00.000Z',
content: t('home:news_items_item3'),
},
],