changes to the sidebar, cards and footer (#237)

* added responsiveness to sidebar and sticky footer

* remobed unused vars

* added functionality to read more button

* a minor logical error fixed

* removed footer
This commit is contained in:
palak
2020-10-17 01:14:03 +05:30
committed by GitHub
parent 18cc21b60d
commit e9e9b6755c
5 changed files with 35 additions and 12 deletions

View File

@@ -29,12 +29,8 @@ const Layout = ({ children }) => {
<Header siteTitle={data.site.siteMetadata.title} />
<div className="container mx-auto px-10">
<main>{children}</main>
<footer>
© {new Date().getFullYear()}, Built with
{` `}
<a href="https://www.gatsbyjs.org">Gatsby</a>
</footer>
</div>
</>
)
}