From fc5f9e176eb32519b00e8fb7e123adc38a3ecc8b Mon Sep 17 00:00:00 2001 From: timofeyevvv Date: Fri, 3 May 2024 17:16:26 +0300 Subject: [PATCH] feat: added news article about duration module --- 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 c59eec7cf4d1..5b3eee9395b0 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": "We've published our illustration library in Figma community.", - "news_items_item2": "We've added two new components: Palette, which allows you to display a grid of icons and emojis, and Divider, which simply divides things.", - "news_items_item3": "The illustrations library has been released, providing 21 default images in two themes for the placeholder component.", + "news_items_item1": "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_item2": "We've published our illustration library in Figma community.", + "news_items_item3": "We've added two new components: Palette, which allows you to display a grid of icons and emojis, and Divider, which simply divides things.", "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 efd86763f1a8..d4b117379e92 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": "Мы опубликовали библиотеку иллюстраций в Figma community.", - "news_items_item2": "Мы добавили два новых компонента: Palette, который помогает отображать эмодзи или иконки и Divider, он поможет везде, где нужен разделитель.", - "news_items_item3": "Вышлабиблиотека иллюстраций, в ней мы собрали 21 базовую иллюстрацию для светлой и тёмной темы. Они заработают автоматически, если вы используете placeholder компонент.", + "news_items_item1": "Мы добавили модуль duration в библиотеку date-utils. Он реализует стандарт ISO 8601 для временных интервалов. Тут об этом можно почитать подробнее.", + "news_items_item2": "Мы опубликовали библиотеку иллюстраций в Figma community.", + "news_items_item3": "Мы добавили два новых компонента: Palette, который помогает отображать эмодзи или иконки и Divider, он поможет везде, где нужен разделитель.", "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 ab985ff5e141..f0686ddd6a49 100644 --- a/src/content/landing.ts +++ b/src/content/landing.ts @@ -63,15 +63,15 @@ export const getLanding = (t: TFunction): CustomPageContent => ({ title: t('home:news_title'), items: [ { - date: '2024-04-22T12:00:00.000Z', + date: '2024-05-03T14:00:00.000Z', content: t('home:news_items_item1'), }, { - date: '2024-04-16T14:30:00.000Z', + date: '2024-04-22T12:00:00.000Z', content: t('home:news_items_item2'), }, { - date: '2024-04-02T09:00:00.000Z', + date: '2024-04-16T14:30:00.000Z', content: t('home:news_items_item3'), }, ],