diff --git a/src/assets/text/authors.js b/src/assets/text/authors.js new file mode 100644 index 0000000..19d2807 --- /dev/null +++ b/src/assets/text/authors.js @@ -0,0 +1,37 @@ +export default { + // do not delete section. delete individuals as needed. modify content as needed + // currently only 'fullName', 'firstName', 'initials', 'profile_link', and 'contribution' are used + primaryAuthors: [ + { + firstName: 'Cee', + lastName: 'Nell', + fullName: 'Cee Nell', + initials: 'CN', + profile_link: 'https://www.usgs.gov/staff-profiles/cee-nell', + role: 'developer', + contribution: 'contributed to the data processing pipeline, developed the website, and created the D3 animation' + }, + { + firstName: 'Lindsay', + lastName: 'Platt', + fullName: 'Lindsay Platt', + initials: 'LP', + profile_link: 'https://www.usgs.gov/staff-profiles/lindsay-rc-platt', + role: 'developer', + contribution: 'developed the data processing pipeline to pull historic and current groundwater levels, and generated the svg map' + } + ], + // do not delete section. delete any or all individuals as needed. modify content as needed + // currently only 'fullName', 'firstName', 'initials', 'profile_link', and 'contribution' are used + additionalAuthors: [ + { + firstName: 'Hayley', + lastName: 'Corson-Dosch', + fullName: 'Hayley Corson-Dosch', + initials: 'HCD', + profile_link: 'https://www.usgs.gov/staff-profiles/hayley-corson-dosch', + role: 'developer', + contribution: 'contributed to website development and reviewed code' + } + ] +}; \ No newline at end of file diff --git a/src/components/Authorship.vue b/src/components/Authorship.vue new file mode 100644 index 0000000..ee0dd62 --- /dev/null +++ b/src/components/Authorship.vue @@ -0,0 +1,101 @@ + + + + \ No newline at end of file diff --git a/src/components/GWL.vue b/src/components/GWL.vue index bf70d5d..a3d977c 100644 --- a/src/components/GWL.vue +++ b/src/components/GWL.vue @@ -104,6 +104,11 @@ >Provisional data were included in this analysis.


+

+ Page development +

+ +

import( /* webpackPreload: true */ /*webpackChunkName: "Legend"*/ "./../components/Legend") + Legend: () => import( /* webpackPreload: true */ /*webpackChunkName: "Legend"*/ "./../components/Legend"), + authorship: () => import( /* webpackPreload: true */ /*webpackChunkName: "section"*/ "./../components/Authorship") }, data() { return { diff --git a/src/views/Visualization.vue b/src/views/Visualization.vue index 210ceda..1871072 100644 --- a/src/views/Visualization.vue +++ b/src/views/Visualization.vue @@ -10,7 +10,6 @@ export default { name: 'Visualization', components: { GWL: () => import( /* webpackPreload: true */ /*webpackChunkName: "section"*/ "./../components/GWL") - }, computed: { },