gatsby-matrix-theme 3.0.7 → 3.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [3.0.8](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v3.0.7...v3.0.8) (2021-12-09)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * moved footer navigation before main content ([bf923b2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/bf923b2660f3e826668b89814890793baa37f6a9))
7
+
1
8
  ## [3.0.7](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v3.0.6...v3.0.7) (2021-12-07)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "3.0.7",
3
+ "version": "3.0.8",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -74,6 +74,7 @@ function Body({ pageContext, children }) {
74
74
  }}
75
75
  />
76
76
  )}
77
+ {FooterNavigation && <FooterNavigation section={footerNavigationData} />}
77
78
  {ContactUs ? (
78
79
  <ContactUs page={pageContext} />
79
80
  ) : (
@@ -97,12 +98,8 @@ function Body({ pageContext, children }) {
97
98
  )}
98
99
  </>
99
100
  )}
100
-
101
101
  <ScrollToTop />
102
102
  {OpenGraph && <OpenGraph text="Del på" page={pageContext?.page} />}
103
-
104
- {FooterNavigation && <FooterNavigation section={footerNavigationData} />}
105
-
106
103
  <Footer
107
104
  footerTopCustom={FooterTop}
108
105
  footerBottomCustom={FooterBottom}