diff --git a/components/footer/index.js b/components/footer/index.js
new file mode 100644
index 000000000..13ee851aa
--- /dev/null
+++ b/components/footer/index.js
@@ -0,0 +1,26 @@
+import './style.scss';
+
+const Footer = () => (
+
+
+
+
+
+
Community created roadmaps, articles, resources and journeys to help you choose your path and grow in your career.
+
+
+ © roadmap.sh ·
+ FAQ ·
+ Terms ·
+ Privacy
+
+
+
+
+);
+
+export default Footer;
\ No newline at end of file
diff --git a/components/footer/style.scss b/components/footer/style.scss
new file mode 100644
index 000000000..ea54a5865
--- /dev/null
+++ b/components/footer/style.scss
@@ -0,0 +1,67 @@
+.page-footer {
+ padding: 65px 10px;
+
+ .site-meta {
+ width: 350px;
+
+ .brand-detail {
+ display: flex;
+ align-items: center;
+ }
+
+ .brand {
+ display: flex;
+ align-items: center;
+ font-weight: 600;
+ color: #000;
+ text-decoration: none;
+
+ img {
+ height: 25px;
+ width: 25px;
+ margin-right: 8px;
+ }
+ }
+
+ .preposition {
+ margin: 0 7px;
+ }
+
+ .follow-author {
+ background-color: #1e99e6;
+ border-radius: 3px;
+ color: #fff;
+ cursor: pointer;
+ font-size: 12px;
+ font-weight: 600;
+ line-height: 20px;
+ padding: 0 6px;
+ white-space: nowrap;
+ text-decoration: none;
+
+ &:hover {
+ background: #43aaea;
+ }
+ }
+
+ .brand-explanation {
+ color: #999;
+
+ p {
+ font-size: 15px;
+ line-height: 24px;
+ margin: 15px 0;
+ }
+ }
+
+ .meta-links {
+ color: #a3a3a3;
+ font-size: 15px;
+
+ a {
+ color: #000;
+ text-decoration: none;
+ }
+ }
+ }
+}
diff --git a/pages/home/index.js b/pages/home/index.js
index 390e06e06..1d012f4e1 100644
--- a/pages/home/index.js
+++ b/pages/home/index.js
@@ -2,6 +2,7 @@ import Header from '../../components/header/index';
import FeaturedContent from '../../components/featured-content';
import './style.scss';
import HeroSection from '../../components/hero-section';
+import Footer from '../../components/footer';
export const Home = (props) => (
@@ -10,6 +11,7 @@ export const Home = (props) => (
+
);