- { links.map((link,i) =>
-
this.onItemClick(e)} />
- )}
+ { links.map((link,i) => this.onItemClick(e)} /> )}
+
+
+ { social.map((sc,i) => ) }
+
diff --git a/src/public/components/layout/header/hamburger/styles.scss b/src/public/components/layout/header/hamburger/styles.scss
index 5eb2316..d6bda74 100644
--- a/src/public/components/layout/header/hamburger/styles.scss
+++ b/src/public/components/layout/header/hamburger/styles.scss
@@ -68,4 +68,24 @@
&.is-active { border-color: $s-color--primary; }
}
+
+ &__social {
+ width: 100%;
+
+ display: flex;
+ flex-wrap: wrap;
+
+ &-link {
+ display: block;
+ width: 20%;
+ width: calc(20% - #{$s-gutter--xsmall / 2});
+ margin-top: $s-gutter--xsmall;
+ padding: $s-gutter--xsmall;
+ border-radius: 100%;
+
+ &.is-github { background: $s-social--github-background; }
+
+ + #{&} { margin-left: calc(#{$s-gutter--xsmall} + 0); }
+ }
+ }
}
diff --git a/src/public/components/layout/header/index.tsx b/src/public/components/layout/header/index.tsx
index 50c15c4..1b8258a 100644
--- a/src/public/components/layout/header/index.tsx
+++ b/src/public/components/layout/header/index.tsx
@@ -28,6 +28,7 @@ import { HeaderNav } from './nav/';
import './styles.scss';
+
export const Links = [
{ title: 'Home', exact: true, to: '/' },
{ title: 'About', exact: true, to: '/about' },
@@ -36,6 +37,11 @@ export const Links = [
];
+export const Social = [
+ { title: 'GitHub', to: '//github.com/YourWishes', src: require('./../../../assets/icons/icon-github.svg') }
+];
+
+
export interface HeaderProps extends React.HTMLAttributes