Compare commits

..

No commits in common. "07c88c98b8d3c43da0331dc610c480ca20baac86" and "e58b955496163adaa1a0aa5e0e600dda881ba1ab" have entirely different histories.

3 changed files with 9 additions and 13 deletions

View File

@ -5,15 +5,14 @@ import Header from '../Header';
import './styles.scss';
import '../../styles/code.scss';
type baseType = {
children: React.ReactNode
}
const Base = ({ children }: baseType) => (
const Base = ({ children }: any) => (
<>
<div className="ContainerMD">
<Header />
<main>{children}</main>
<div style={{ marginTop: '2rem' }}>
<main>{children}</main>
</div>
</div>
</>
);

View File

@ -1,6 +1,5 @@
.HeaderBlock {
padding-top: 15%;
margin-bottom: 4%;
padding-top: 1em;
}
.LinkText {

View File

@ -50,12 +50,10 @@ const IndexPage = (props: articleListType) => {
export default IndexPage;
export const Head = () => {
return (
<SEO title="Home"
children=""
description=""
/>
)
<SEO title="Home"
children=""
description=""
/>
}
export const pageQuery = graphql`