diff --git a/src/components/footer.js b/src/components/footer.js
new file mode 100644
index 0000000..a02d1f7
--- /dev/null
+++ b/src/components/footer.js
@@ -0,0 +1,50 @@
+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
\ No newline at end of file
diff --git a/src/components/layout.js b/src/components/layout.js
index c48fe6f..799f874 100644
--- a/src/components/layout.js
+++ b/src/components/layout.js
@@ -3,6 +3,7 @@ import { Link as GatsbyLink } from "gatsby"
import { AppBar, Container, CssBaseline, Grid, Link, ThemeProvider, Toolbar } from "@mui/material"
import NavMenu from "./nav-menu"
import theme from "./theme"
+import Footer from "./footer"
const Layout = ({ location, title, children }) => {
// const rootPath = `${__PATH_PREFIX__}/`
@@ -26,7 +27,7 @@ const Layout = ({ location, title, children }) => {
return (
<>
-
+
{
-
+
@@ -53,12 +54,8 @@ const Layout = ({ location, title, children }) => {
{children}
-
+
>
)
diff --git a/src/images/autonomic-monster.png b/src/images/autonomic-monster.png
new file mode 100644
index 0000000..23062cf
Binary files /dev/null and b/src/images/autonomic-monster.png differ