Skip to content

Commit 6f496e2

Browse files
authored
feat: add more (#1097)
1 parent 47328c5 commit 6f496e2

File tree

4 files changed

+27
-0
lines changed

4 files changed

+27
-0
lines changed

src/components/DocsOverview/index.tsx

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ import Light from "@site/src/components/Icons/light.svg";
3838
import AI from "@site/src/components/Icons/AI.svg";
3939
import Selfed from "@site/src/components/Icons/selfd.svg";
4040
import Cloud from "@site/src/components/Icons/cloud-2.svg";
41+
import Cases from "@site/src/components/Icons/cases.svg";
42+
import ChangeLog from "@site/src/components/Icons/changelog.svg";
43+
import FAQ from "@site/src/components/Icons/faq.svg";
4144
import { Col, Row } from "antd";
4245
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
4346
import $t from "@site/src/utils/tools";
@@ -416,6 +419,27 @@ const DocsOverview: FC = (): ReactElement => {
416419
to={`${homeLink}/pricing`}
417420
/>
418421
</Col>
422+
<Col {...colLayout}>
423+
<SmallCard
424+
icon={<Cases></Cases>}
425+
text={$t("Use Cases")}
426+
to={`${homeLink}/use-cases`}
427+
/>
428+
</Col>
429+
<Col {...colLayout}>
430+
<SmallCard
431+
icon={<FAQ></FAQ>}
432+
text={$t("FAQ")}
433+
to={`/guides/overview/faq`}
434+
/>
435+
</Col>
436+
<Col {...colLayout}>
437+
<SmallCard
438+
icon={<ChangeLog></ChangeLog>}
439+
text={$t("Changelog")}
440+
to={`/release-notes`}
441+
/>
442+
</Col>
419443
</Row>
420444
</div>
421445
</ContentCardWrap>

src/components/Icons/cases.svg

Lines changed: 1 addition & 0 deletions
Loading

src/components/Icons/changelog.svg

Lines changed: 1 addition & 0 deletions
Loading

src/components/Icons/faq.svg

Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)