Skip to content
Snippets Groups Projects
VisualizationView.vue 1.8 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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 = [
      { name: "Oronde Drakes", link: "https://example1.com", image: "https://i.pinimg.com/originals/e3/e5/b4/e3e5b4544f08a948e591b5894cefa2be.jpg" },
      { name: "Diana Restrepo-Osorio", link: "https://example2.com", image: "https://i.pinimg.com/originals/e3/e5/b4/e3e5b4544f08a948e591b5894cefa2be.jpg" },
      { name: "Person", link: "https://example3.com", image: "https://i.pinimg.com/originals/e3/e5/b4/e3e5b4544f08a948e591b5894cefa2be.jpg" },
      { name: "Person", link: "https://example4.com", image: "https://i.pinimg.com/originals/e3/e5/b4/e3e5b4544f08a948e591b5894cefa2be.jpg" },
      { name: "Person", link: "https://example5.com", image: "https://i.pinimg.com/originals/e3/e5/b4/e3e5b4544f08a948e591b5894cefa2be.jpg" },
      { name: "Person", link: "https://example6.com", image: "https://i.pinimg.com/originals/e3/e5/b4/e3e5b4544f08a948e591b5894cefa2be.jpg" },
    ];
    
    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>