Skip to content
Snippets Groups Projects
VisualizationView.vue 1.96 KiB
Newer Older
Cee Nell's avatar
Cee Nell committed
<template>
  <section id="visualization">
Cee Nell's avatar
Cee Nell committed
    <BeeswarmChart /> 
    <NarrativeIntro />
Cee Nell's avatar
Cee Nell committed
    <InteractiveDendrogram />
    <Conclusion />
Cee Nell's avatar
Cee Nell committed
    <AboutTheTeam :data="circleData" />
    <ReferencesSection />
    <AuthorshipSection />
Cee Nell's avatar
Cee Nell committed
  </section>
</template>

<script setup>
  import VizTitle from '.././components/VizTitle.vue'
  import NarrativeIntro from '.././components/NarrativeIntro.vue'
Cee Nell's avatar
Cee Nell committed
  import BeeswarmChart from '../components/BeeswarmChart.vue'
Cee Nell's avatar
Cee Nell committed
  import InteractiveDendrogram from '.././components/InteractiveDendrogram.vue'
  import Maps from '.././components/Maps.vue'
  import Conclusion from '.././components/Conclusion.vue'
Cee Nell's avatar
Cee Nell committed
  import AboutTheTeam from '../components/AboutTheTeam.vue'
  import ReferencesSection from '.././components/References.vue'
  import AuthorshipSection from '.././components/Authorship.vue'
Cee Nell's avatar
Cee Nell committed

  const circleData = [
Azadpour, Elmera's avatar
Azadpour, Elmera committed
  { name: "Oronde Drakes", link: "https://www.usgs.gov/staff-profiles/oronde-drakes", image: "https://hazards.colorado.edu/api/v2/uploads/avatar/oronde_drakes2-1556849997156.JPG" },
  { name: "Diana Restrepo-Osorio", link: "https://www.usgs.gov/staff-profiles/diana-l-restrepo-osorio", image: "https://d9-wret.s3.us-west-2.amazonaws.com/assets/palladium/production/s3fs-public/styles/staff_profile/public/media/images/Copy%20of%20Restrepo-Osorio_Diana%20L_PA-02473_1702473_027_8x12.jpg?itok=64YcJ9wy" },
  { name: "Kathryn Powlen", link: "https://www.usgs.gov/staff-profiles/kathryn-a-powlen", image: "https://d9-wret.s3.us-west-2.amazonaws.com/assets/palladium/production/s3fs-public/styles/staff_profile/public/media/images/KPowlen_photo.jpg?itok=IufjVCBr" },
  { name: "Megan Hines", link: "https://www.usgs.gov/staff-profiles/megan-k-hines", image: "https://d9-wret.s3.us-west-2.amazonaws.com/assets/palladium/production/s3fs-public/styles/staff_profile/public/thumbnails/image/Hines_Megan_USGS.jpg?itok=mOifmPnR" },
Cee Nell's avatar
Cee Nell committed
];
Cee Nell's avatar
Cee Nell committed
</script>

<style lang="scss" scoped>
  #visualization{
Cee Nell's avatar
Cee Nell committed
    padding: 0rem 0rem 0rem 0rem;
Clarke, Aileen's avatar
Clarke, Aileen committed
</style>