diff --git a/docs/git_hooks_automating_your_workflow.md b/docs/git_hooks_automating_your_workflow.md index 6dd73df..4444329 100644 --- a/docs/git_hooks_automating_your_workflow.md +++ b/docs/git_hooks_automating_your_workflow.md @@ -1,5 +1,3 @@ -# git-hooks-automating-your-workflow - Git hooks are powerful scripts that can automate various aspects of your development workflow. They allow you to execute custom scripts before or after important Git events, such as committing, pushing, or merging. This post will introduce you to Git hooks and show you how to leverage them effectively. ## What Are Git Hooks? diff --git a/src/pages/Doc/index.jsx b/src/pages/Doc/index.jsx index 05aa084..e954a27 100644 --- a/src/pages/Doc/index.jsx +++ b/src/pages/Doc/index.jsx @@ -2,6 +2,7 @@ import React, { useEffect, useState } from 'react'; import { Link } from 'react-router-dom'; import { List, Spin, Alert } from 'antd'; import Layout from '../../components/Layout/Layout'; +import { FaArrowRight } from "react-icons/fa"; const DocList = () => { const [docs, setDocs] = useState([]); @@ -37,10 +38,12 @@ const DocList = () => {

Documentation

-