diff --git a/src/components/leaf-icon.js b/src/components/leaf-icon.js
new file mode 100644
index 0000000..1a1202c
--- /dev/null
+++ b/src/components/leaf-icon.js
@@ -0,0 +1,13 @@
+import { SvgIcon } from "@mui/material"
+import React from "react"
+
+const LeafIcon = props => (
+
+
+
+)
+
+export default LeafIcon
\ No newline at end of file
diff --git a/src/pages/index.js b/src/pages/index.js
index 4344b4a..76d7efb 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -4,9 +4,10 @@ import { Link as GatsbyLink, graphql } from "gatsby"
import Bio from "../components/bio"
import Layout from "../components/layout"
import Seo from "../components/seo"
-import { Box, Button, Link, List, ListItem, ListItemIcon, ListItemText, Stack, Typography } from "@mui/material"
+import { Box, Button, Link, List, ListItem, ListItemIcon, ListItemText, Stack, SvgIcon, Typography } from "@mui/material"
import EastIcon from '@mui/icons-material/East'
import { H1Separator, H2Separator } from "../components/heading-separators"
+import LeafIcon from "../components/leaf-icon"
const serviceMenu = [
{ label: "Support", path: "/" },
@@ -46,7 +47,10 @@ const BlogIndex = ({ data, location }) => {
variant="h1"
sx={{ fontWeight: 400, fontSize: 44, lineHeight: "40px" }}
>
- Autonomic is a co-operative that is owned and run by its workers
+ Autonomic is a co-operative that is owned and run by its workers{" "}
+
+
+
@@ -115,39 +119,6 @@ const BlogIndex = ({ data, location }) => {
Contact us at hello@autonomic.zone
- {/* */}
- {/*
- {posts.map(post => {
- const title = post.frontmatter.title || post.fields.slug
-
- return (
- -
-
-
-
-
- {title}
-
-
- {post.frontmatter.date}
-
-
-
-
- )
- })}
-
*/}
)
}