Update 07/04/2023
This commit is contained in:
64
docs/src/components/HomepageFeatures/index.js
Normal file
64
docs/src/components/HomepageFeatures/index.js
Normal file
@@ -0,0 +1,64 @@
|
||||
import React from 'react';
|
||||
import clsx from 'clsx';
|
||||
import styles from './styles.module.css';
|
||||
|
||||
const FeatureList = [
|
||||
{
|
||||
title: 'Dễ sử dụng',
|
||||
Svg: require('@site/static/img/undraw_docusaurus_mountain.svg').default,
|
||||
description: (
|
||||
<>
|
||||
Adman được thiết kế để dễ dàng cài đặt và sử dụng
|
||||
tạo Minigame hoạt động và chạy một cách nhanh chóng.
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: 'Tập trung UX / UI và Marketing',
|
||||
Svg: require('@site/static/img/undraw_docusaurus_tree.svg').default,
|
||||
description: (
|
||||
<>
|
||||
Thu thập thông tin khách hàng tiềm năng.
|
||||
Tăng tương tác với thương hiệu, tăng lượng truy cập vào website, kích thích mua sắm ...
|
||||
</>
|
||||
),
|
||||
},
|
||||
{
|
||||
title: 'Cung cấp bởi Hurasoft',
|
||||
Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
|
||||
description: (
|
||||
<>
|
||||
Hurasoft chuyên tư vấn và triển khai các giải pháp thương mại điện tử tổng thể
|
||||
cho các doanh nghiệp từ khởi đầu kinh doanh đến quy mô lớn.
|
||||
</>
|
||||
),
|
||||
},
|
||||
];
|
||||
|
||||
function Feature({ Svg, title, description }) {
|
||||
return (
|
||||
<div className={clsx('col col--4')}>
|
||||
<div className="text--center">
|
||||
<Svg className={styles.featureSvg} role="img" />
|
||||
</div>
|
||||
<div className="text--center padding-horiz--md">
|
||||
<h3>{title}</h3>
|
||||
<p>{description}</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default function HomepageFeatures() {
|
||||
return (
|
||||
<section className={styles.features}>
|
||||
<div className="container">
|
||||
<div className="row">
|
||||
{FeatureList.map((props, idx) => (
|
||||
<Feature key={idx} {...props} />
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
11
docs/src/components/HomepageFeatures/styles.module.css
Normal file
11
docs/src/components/HomepageFeatures/styles.module.css
Normal file
@@ -0,0 +1,11 @@
|
||||
.features {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 2rem 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.featureSvg {
|
||||
height: 200px;
|
||||
width: 200px;
|
||||
}
|
||||
Reference in New Issue
Block a user