Skip to content
Snippets Groups Projects
VisualizationView.vue 821 B
Newer Older
Cee Nell's avatar
Cee Nell committed
<template>
  <section id="visualization">
    <NarrativeIntro />
    <BubbleChart />
    <Dendrogram />
    <Maps />
    <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'
  import BubbleChart from '../components/BubbleChart.vue'
  import Beeswarm from '../components/Beeswarm.vue'
  import Dendrogram from '.././components/Dendrogram.vue'
  import Maps from '.././components/Maps.vue'
  import ReferencesSection from '.././components/References.vue'
  import AuthorshipSection from '.././components/Authorship.vue'
Cee Nell's avatar
Cee Nell committed
</script>

<style lang="scss" scoped>
  #visualization{
    padding: 6rem 0rem 5rem 0rem;

Clarke, Aileen's avatar
Clarke, Aileen committed
</style>