From c243612c1a282706e76315406033520b47fbabf4 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Sun, 14 Mar 2021 14:43:27 +0300 Subject: feat: add illustrations to HomePage --- src/containers/Home.tsx | 45 +++++++++++++++++++++++++++++++++++++++------ 1 file changed, 39 insertions(+), 6 deletions(-) (limited to 'src/containers') diff --git a/src/containers/Home.tsx b/src/containers/Home.tsx index 0deefd1..82fbf25 100644 --- a/src/containers/Home.tsx +++ b/src/containers/Home.tsx @@ -1,14 +1,47 @@ import React from 'react'; import Page from './Page'; import Button from '../components/Button'; +import Paper from '../components/Paper'; +import waybill from '../assets/waybill.svg'; +import product from '../assets/product.svg'; +import contractors from '../assets/contractors.svg'; + +const cards = [ + { + name: 'Товары', + route: '/products', + src: product, + text: 'Веди учёт товаров для бухгалтерии и интернет-магазина в одном месте', + }, + { + name: 'Контрагенты', + route: '/contractors', + src: contractors, + text: 'Сохраняй историю платежей и переводов от своих партнёров', + }, + { + name: 'Накладные', + route: '/waybills', + src: waybill, + text: 'Проводи накладные в один клик и формируй отчёты', + }, +]; const Home: React.FC = () => ( - -

- Привет, мир! - - -

+ +
+ {cards.map(card => ( + +
+ Накладная +
+

{card.text}

+ +
+
+
+ ))} +
); -- cgit v1.2.3