diff --git a/src/components/DocsLayout/index.tsx b/src/components/DocsLayout/index.tsx
index 59c635d..e79ab1d 100644
--- a/src/components/DocsLayout/index.tsx
+++ b/src/components/DocsLayout/index.tsx
@@ -9,6 +9,7 @@ import React, { PropsWithChildren } from "react"
import { useStaticQuery, graphql } from "gatsby"
import DocsSidebar from "../DocsSidebar"
+import Footer from "../Footer"
import * as SC from "./styles"
const DocsLayout = ({ children }: PropsWithChildren<{}>) => {
@@ -31,11 +32,7 @@ const DocsLayout = ({ children }: PropsWithChildren<{}>) => {
{children}
-
+
)
}
diff --git a/src/components/Footer/index.tsx b/src/components/Footer/index.tsx
new file mode 100644
index 0000000..5b32eb1
--- /dev/null
+++ b/src/components/Footer/index.tsx
@@ -0,0 +1,17 @@
+import React from "react"
+import * as SC from "./styles"
+import Container from "../Container"
+
+const Footer = () => {
+ return (
+
+
+ © {new Date().getFullYear()}, Built with
+ {` `}
+ Gatsby
+
+
+ )
+}
+
+export default Footer
diff --git a/src/components/Footer/styles.tsx b/src/components/Footer/styles.tsx
new file mode 100644
index 0000000..7afaac6
--- /dev/null
+++ b/src/components/Footer/styles.tsx
@@ -0,0 +1,4 @@
+import { Link } from "gatsby"
+import styled from "styled-components"
+
+export const FooterWrapper = styled.footer``
diff --git a/src/components/Layout/index.tsx b/src/components/Layout/index.tsx
index 9914645..86d6c52 100644
--- a/src/components/Layout/index.tsx
+++ b/src/components/Layout/index.tsx
@@ -9,6 +9,7 @@ import React, { PropsWithChildren } from "react"
import { useStaticQuery, graphql } from "gatsby"
import Container from "../Container"
+import Footer from "../Footer"
import Sidebar from "../Sidebar"
import "./layout.scss"
import * as SC from "./styles"
@@ -37,13 +38,7 @@ const Layout = ({ children }: PropsWithChildren<{}>) => {
-
+
)
}