Skip to content

Commit

Permalink
Added instagram hyperlink
Browse files Browse the repository at this point in the history
  • Loading branch information
Vansh-Sethi authored and jeffrey-dot-li committed Aug 17, 2020
1 parent 8ff12c1 commit 3afb12e
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions pages/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,20 @@
</div>

<!-- Newsletter -->
<div class="vx-col w-full lg:w-1/4 flex flex-col justify-around" style="">
<div class="w-full text-ginger-b text-black text-4xl my-6" style="">
Newsletter
</div>
<NewsletterCard :newsletter="featuredNewsletter" v-if="featuredNewsletter"></NewsletterCard>
<div
class="vx-col w-full lg:w-1/4 flex flex-col justify-around"
style=""
>
<div
class="w-full text-ginger-b text-black text-4xl my-6"
style=""
>
Newsletter
</div>
<NewsletterCard
:newsletter="featuredNewsletter"
v-if="featuredNewsletter"
></NewsletterCard>
</div>

<!-- Videos -->
Expand All @@ -70,7 +79,6 @@
:key="$vs.rtl"
style="width: 100%; height: 100%;"
>

<swiper-slide
v-for="(item, index) in featuredContent"
:key="index"
Expand Down Expand Up @@ -127,16 +135,13 @@ export interface ContactInformation {
@Component({
layout: 'main',
components: { NewsletterCard },
mounted()
{
newslettersStore.GetNewsletters();
mounted() {
newslettersStore.GetNewsletters()
}
})
export default class Home extends Vue {
get featuredNewsletter()
{
return newslettersStore?.newsletterList[0];
get featuredNewsletter() {
return newslettersStore?.newsletterList[0]
}
pushComingSoon() {
Expand All @@ -158,11 +163,11 @@ export default class Home extends Vue {
{
name: 'Instagram',
imageUrl: require(`~/assets/images/QuentoLogoMain.png`),
href: 'https://www.instagram.com/quento.ca/',
toolTipText: 'Learn More About Quento',
iconClass: 'bx bxl-instagram',
backgroundColor: '#e1306c',
color: '#FFFFFF',
href: '/splash'
color: '#FFFFFF'
},
{
name: 'Discord',
Expand Down Expand Up @@ -216,8 +221,7 @@ export default class Home extends Vue {
{
name: 'Chemistry Fundamentals',
videoUrl: 'https://www.youtube.com/embed/7YJvx6dlq6M'
},
}
]
pushWebsite(website?: string) {
Expand Down

0 comments on commit 3afb12e

Please sign in to comment.