Skip to content
This repository has been archived by the owner on Feb 6, 2025. It is now read-only.

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jessecogollo committed Apr 20, 2021
1 parent 907b96d commit 4f07a2e
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<template>
<div
id="communityParners-area"
id="communityPartners-area"
class="section section-padding-extra section-bg section-bg-green"
>
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3 text-center">
<div class="section-heading">
<h2 class="section-title">Community Parners</h2>
<h2 class="section-title">Community Partners</h2>
</div>
</div>
</div>
<div class="row">
<div class="fun-facts">
<div
v-for="(community, index) in communityParners"
v-for="(community, index) in communityPartners"
:key="index"
class="col-md-3 text-center"
>
Expand Down Expand Up @@ -58,15 +58,15 @@
<script>
import { faJs } from '@fortawesome/free-brands-svg-icons'
import reactLaConfLogo from '@/assets/img/communityParners/logo-reactlaconf.svg'
import cssConfCoLogo from '@/assets/img/communityParners/logo-cssconfco.svg'
import ngConfCoLogo from '@/assets/img/communityParners/logo-ngConfCo.svg'
import nodeConfCoLogo from '@/assets/img/communityParners/logo-nodeConfCo.jpg'
import reactLaConfLogo from '@/assets/img/communityPartners/logo-reactlaconf.svg'
import cssConfCoLogo from '@/assets/img/communityPartners/logo-cssconfco.svg'
import ngConfCoLogo from '@/assets/img/communityPartners/logo-ngConfCo.svg'
import nodeConfCoLogo from '@/assets/img/communityPartners/logo-nodeConfCo.jpg'
export default {
data() {
return {
communityParners: {
communityPartners: {
reactLaConf: {
name: 'ReactLaConf',
website: 'https://reactlaconf.co/',
Expand Down
4 changes: 2 additions & 2 deletions components/AppNavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
<li><a @click="scrollSection('sponsors-area')">Sponsors</a></li>
<li><a @click="scrollSection('team-area')">Organizadores</a></li>
<li>
<a @click="scrollSection('communityParners-area')"
>Community Parners</a
<a @click="scrollSection('communityPartners-area')"
>Community Partners</a
>
</li>
<li>
Expand Down
8 changes: 4 additions & 4 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
<!--------------- Team area -------------->
<AppOrganizer />

<!--------------- Community Parners area -------------->
<AppCommuniyParners />
<!--------------- Community Partners area -------------->
<AppCommunityPartners />
</div>
<!--------------- Footer -------------->
<app-footer />
Expand All @@ -50,7 +50,7 @@ import AppHeader from '~/components/AppHeader.vue'
import AppShortHeroes from '~/components/AppShortHeroes.vue'
import AppCommunities from '~/components/AppCommunities.vue'
import AppOrganizer from '~/components/AppOrganizer.vue'
import AppCommuniyParners from '~/components/AppCommuniyParners.vue'
import AppCommunityPartners from '~/components/AppCommunityPartners.vue'
import AppContact from '~/components/AppContact.vue'
import AppSponsors from '~/components/AppSponsors.vue'
import AppFooter from '~/components/AppFooter.vue'
Expand All @@ -62,7 +62,7 @@ export default {
AppShortHeroes,
AppCommunities,
AppOrganizer,
AppCommuniyParners,
AppCommunityPartners,
AppContact,
AppSponsors,
AppFooter,
Expand Down

0 comments on commit 4f07a2e

Please sign in to comment.