diff --git a/src/components/structure/blogFrontPage.js b/src/components/structure/blogFrontPage.js
index 40d38423d..cb5168651 100644
--- a/src/components/structure/blogFrontPage.js
+++ b/src/components/structure/blogFrontPage.js
@@ -1,7 +1,7 @@
import React from 'react';
import {graphql, useStaticQuery} from 'gatsby';
import PostCardFront from "./post-card-front";
-import {Container} from 'react-bootstrap';
+import {Container, Row} from 'react-bootstrap';
const query = graphql`
{
@@ -49,10 +49,11 @@ const LatestPosts = () => {
console.log(posts)
return (
- {posts.map(({node}) => (
-
-
- ))}
+
+ {posts.map(({node}) => (
+
+ ))}
+
);
};
diff --git a/src/components/structure/post-card-front.js b/src/components/structure/post-card-front.js
index 8d39d4038..b135ad0c7 100644
--- a/src/components/structure/post-card-front.js
+++ b/src/components/structure/post-card-front.js
@@ -1,21 +1,22 @@
import React from "react";
-import {Card, CardImg, CardBody, CardImgOverlay, CardTitle, CardText} from "react-bootstrap";
+import {Card, CardImg, CardBody, CardImgOverlay, CardTitle, CardText, Col} from "react-bootstrap";
import {Link} from "gatsby";
import {GatsbyImage, getImage} from "gatsby-plugin-image";
const PostCardFront = ({post}) => (
-
-
-
-
-
- {post.frontmatter.title}
- {post.frontmatter.date}
-
-
-
+
+
+
+
+
+ {post.frontmatter.title}
+ {post.frontmatter.date}
+
+
+
+
);
export default PostCardFront;
\ No newline at end of file
diff --git a/src/components/structure/projectsFrontPage.js b/src/components/structure/projectsFrontPage.js
index 74d6c856e..cc4662b4d 100644
--- a/src/components/structure/projectsFrontPage.js
+++ b/src/components/structure/projectsFrontPage.js
@@ -1,7 +1,7 @@
import React from 'react';
import {graphql, useStaticQuery} from 'gatsby';
import PostCardFront from "./post-card-front";
-import {Container} from 'react-bootstrap';
+import {Container, Row} from 'react-bootstrap';
const query = graphql`
{
@@ -48,10 +48,11 @@ const LatestProjects = () => {
const posts = data.allMarkdownRemark.edges;
return (
+
{posts.map(({node}) => (
-
))}
+
);
};
diff --git a/src/pages/index.js b/src/pages/index.js
index a038b6e41..dca532a69 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -1,6 +1,6 @@
import * as React from "react"
import HomeLayout from "../components/layouts/homeLayout";
-import {Container} from "react-bootstrap";
+import {Container, Row} from "react-bootstrap";
import Seo from "../components/structure/SEO";
import BlogFrontPage from"../components/structure/blogFrontPage";
import Logos from "../components/structure/logos";
@@ -19,11 +19,11 @@ const IndexPage = () => {
Latest Projects
-
+
- Latest Blog Posts
-
+ Latest Blog Posts
+
diff --git a/src/styles/footer-style.module.css b/src/styles/footer-style.module.css
index d9f169f18..8dce5d000 100644
--- a/src/styles/footer-style.module.css
+++ b/src/styles/footer-style.module.css
@@ -2,7 +2,6 @@
padding-top: 10vh;
font-size: 1rem;
background: #192036;
- height: 40vh;
}
.footer li {