Commit db55319 1 parent 04469a0 commit db55319 Copy full SHA for db55319
File tree 3 files changed +21
-1
lines changed
3 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,16 @@ const Footer = class extends React.Component {
21
21
Home
22
22
</ Link >
23
23
</ li >
24
+ < li >
25
+ < Link className = "navbar-item" to = "/photography" >
26
+ Photography
27
+ </ Link >
28
+ </ li >
29
+ < li >
30
+ < Link className = "navbar-item" to = "/artwork" >
31
+ Artwork
32
+ </ Link >
33
+ </ li >
24
34
< li >
25
35
< Link className = "navbar-item" to = "/about" >
26
36
About
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ $black: #2b2523
23
23
align-items : center
24
24
ul
25
25
margin-top : 0 !important
26
- margin-left : 0 !important
27
26
28
27
// Helper Classes
29
28
.full-width-image-container
@@ -117,6 +116,11 @@ $black: #2b2523
117
116
fill : currentColor
118
117
.navbar-brand .navbar-item .logo
119
118
padding : 0 1rem
119
+ .index-logo
120
+ display : inline-block
121
+ position : absolute
122
+ top : 25px
123
+ left : 25px
120
124
footer .footer
121
125
padding : 2rem 0
122
126
background-color : transparent
Original file line number Diff line number Diff line change 1
1
import React from 'react'
2
2
import PropTypes from 'prop-types'
3
3
import { Link , graphql } from 'gatsby'
4
+ import logo from '../img/logo.svg'
4
5
5
6
import Layout from '../components/Layout'
6
7
@@ -21,6 +22,11 @@ export const IndexPageTemplate = ({
21
22
display : 'block' ,
22
23
} }
23
24
>
25
+ < div className = "index-logo" >
26
+ < Link to = "/" title = "Logo" >
27
+ < img src = { logo } alt = "Rebecca Foran Logo" style = { { width : '35px' } } />
28
+ </ Link >
29
+ </ div >
24
30
< div style = { {
25
31
position : 'relative' ,
26
32
top : '25vh' } } >
You can’t perform that action at this time.
0 commit comments