import * as React from "react" 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 EastIcon from '@mui/icons-material/East' import { H1Separator, H2Separator } from "../components/heading-separators" import LeafIcon from "../components/leaf-icon" const serviceMenu = [ { label: "Support", path: "/" }, { label: "Website development", path: "/" }, { label: "Custom development", path: "/" }, { label: "Training", path: "/" }, { label: "Etc Whatever U Want", path: "/" }, ] const coreValues = [ { label: "Sustainability", path: "/"}, { label: "Privacy", path: "/"}, { label: "Transparency", path: "/"}, ] const HomePage = ({ data, location }) => { const siteTitle = data.site.siteMetadata?.title || `Title` const posts = data.allMarkdownRemark.nodes if (posts.length === 0) { return (

No blog posts found. Add markdown posts to "content/blog" (or the directory you specified for the "gatsby-source-filesystem" plugin in gatsby-config.js).

) } return ( Autonomic is a co-operative that is owned and run by its workers{" "} {serviceMenu.map(({ label, path }) => ( ))} We build technologies and infrastructure to empower users to make a positive impact on the world. All of our services reflect our commitment to our core values: {coreValues.map(({ label, path }) => ( ))} You can consult our expanded list of values{" "} here . ) } export default HomePage /** * Head export to define metadata for the page * * See: https://www.gatsbyjs.com/docs/reference/built-in-components/gatsby-head/ */ export const Head = () => export const pageQuery = graphql` { site { siteMetadata { title } } allMarkdownRemark(sort: { frontmatter: { date: DESC } }) { nodes { excerpt fields { slug } frontmatter { date(formatString: "MMMM DD, YYYY") title description } } } } `