import { Box, Container, Grid, Typography } from "@mui/material" import { StaticImage } from "gatsby-plugin-image" import React from "react" const address={ name: "Autonomic Co-operative Limited", line1: "1539 Pershore Road", city: "Birmingham", postcode: "B30 2JH", country: "United Kingdom" } const FooterText = ({ children, bold }) => { const normalStyle = { fontSize: 10, lineHeight: "14px" } const boldStyle = { fontSize: 14 } return {children} } const Footer = () => ( {address.name} {address.line1} {address.city} {address.postcode} {address.country} We are a Co-operative Society registered with the FCA. Registration Number: 4597 Member of the CoTech Network ) export default Footer