From 671325876e6866105a78ce6a8e25821329a60254 Mon Sep 17 00:00:00 2001 From: desmukh Date: Thu, 5 Jan 2023 16:42:22 +0500 Subject: [PATCH] scaffold home page content --- src/pages/index.js | 75 +++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 71 insertions(+), 4 deletions(-) diff --git a/src/pages/index.js b/src/pages/index.js index 800b741..b26823b 100644 --- a/src/pages/index.js +++ b/src/pages/index.js @@ -1,9 +1,25 @@ import * as React from "react" -import { Link, graphql } from "gatsby" +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, ListItemButton, ListItemIcon, ListItemText, Stack, Typography } from "@mui/material" +import EastIcon from '@mui/icons-material/East' + +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 BlogIndex = ({ data, location }) => { const siteTitle = data.site.siteMetadata?.title || `Title` @@ -24,8 +40,59 @@ const BlogIndex = ({ data, location }) => { return ( - -
    + + Autonomic is a co-operative that is owned and run by its workers + + What we offer + + {serviceMenu.map(({ label, path }) => ( + + + + + + + + + ))} + + + Interested? Work with us + + + 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 + + . + + + + + + {/* */} + {/*
      {posts.map(post => { const title = post.frontmatter.title || post.fields.slug @@ -56,7 +123,7 @@ const BlogIndex = ({ data, location }) => { ) })} -
    +
*/}
) }