diff --git a/src/App.css b/src/App.css
index 5e244de8..71c0a26f 100644
--- a/src/App.css
+++ b/src/App.css
@@ -4,3 +4,7 @@ body,
height: 100%;
background-color: #fafbff;
}
+
+.task-list-item {
+ list-style-type: none;
+}
diff --git a/src/App.js b/src/App.js
index 00bf9380..8f9950a8 100644
--- a/src/App.js
+++ b/src/App.js
@@ -2,7 +2,7 @@
// evergreen-ui docs: https://evergreen.segment.com/
import './App.css';
-import { Tablist, Tab, Pane, Link } from 'evergreen-ui';
+import { Tablist, Tab, Pane, Link, AddIcon } from 'evergreen-ui';
import React from 'react';
import Home from './Home';
import Projects from './Projects';
@@ -39,7 +39,22 @@ export default function App() {
{tab}
))}
-
+
+
+
+