summaryrefslogtreecommitdiff
path: root/src/components/SideBar.js
diff options
context:
space:
mode:
authorHaishan <[email protected]>2020-08-01 20:04:49 +0800
committerHaishan <[email protected]>2020-08-01 20:41:55 +0800
commit4ae2c5c2f319e15ecba245f8b679dbfcd0242a84 (patch)
treed269f9511ba922800c0308b04cf7d0386588270a /src/components/SideBar.js
parent437733f4afe1eae86f946a8aa3336f58d9980d8c (diff)
feat: a simple about page
Diffstat (limited to 'src/components/SideBar.js')
-rw-r--r--src/components/SideBar.js17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/components/SideBar.js b/src/components/SideBar.js
index 05f6eba..29724ae 100644
--- a/src/components/SideBar.js
+++ b/src/components/SideBar.js
@@ -2,7 +2,7 @@ import cx from 'clsx';
import { motion } from 'framer-motion';
import PropTypes from 'prop-types';
import React from 'react';
-// import { Command, Activity, Globe, Link2, Settings, File } from 'react-feather';
+import { Info } from 'react-feather';
import {
FcAreaChart,
FcDocument,
@@ -16,7 +16,6 @@ import { Link, useLocation } from 'react-router-dom';
import { getTheme, switchTheme } from '../store/app';
import s from './SideBar.module.css';
import { connect } from './StateProvider';
-import SvgYacd from './SvgYacd';
const { useCallback } = React;
@@ -115,9 +114,17 @@ function SideBar({ dispatch, theme }) {
/>
))}
</div>
- <button className={s.themeSwitchContainer} onClick={switchThemeHooked}>
- {theme === 'light' ? <MoonA /> : <Sun />}
- </button>
+ <div className={s.footer}>
+ <button
+ className={cx(s.iconWrapper, s.themeSwitchContainer)}
+ onClick={switchThemeHooked}
+ >
+ {theme === 'light' ? <MoonA /> : <Sun />}
+ </button>
+ <Link to="/about" className={s.iconWrapper}>
+ <Info size={20} />
+ </Link>
+ </div>
</div>
);
}