diff --git a/src/views/Home/partials/WhatWillLearn.tsx b/src/views/Home/partials/WhatWillLearn.tsx
index 5048745..ec722b2 100644
--- a/src/views/Home/partials/WhatWillLearn.tsx
+++ b/src/views/Home/partials/WhatWillLearn.tsx
@@ -1,5 +1,5 @@
import React from 'react'
-import { Button, Card, Col, Row } from 'antd'
+import { Avatar, Button, Card, Col, Row } from 'antd'
import Title from 'components/Typography/Title'
import { CardProps } from 'antd/lib/card'
import Link from 'next/link'
@@ -8,10 +8,10 @@ interface LearnItemProps extends CardProps {
urlTitleIcon?: string
urlDocumentation?: string
urlExample?: string
- title?: string
+ title?: string | React.ReactNode
}
-const dataLearnItems = [
+const dataLearnItems: LearnItemProps[] = [
{
title: 'React',
urlTitleIcon:
@@ -42,6 +42,7 @@ const dataLearnItems = [
urlTitleIcon: 'https://formik.org/images/favicon.png',
urlDocumentation: 'https://formik.org/docs/overview',
children: 'Build forms in React, without the tears',
+ urlExample: '/formik/basic-input',
},
{
title: 'React Query',
@@ -54,13 +55,42 @@ const dataLearnItems = [
'\nFetch, cache and update data ' +
'in your React and React Native applications all without touching any "global state".',
},
+ {
+ title: (
+