Skip to content

Commit

Permalink
Add GDG as co-organizer and AjGirona as supporter
Browse files Browse the repository at this point in the history
  • Loading branch information
XaviTorello committed Sep 21, 2023
1 parent 868c4c8 commit daf789c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 17 deletions.
Binary file added src/assets/images/gdg_girona.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/components/Modules/MLogosGallery.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ const { items, showLink } = toRefs(props)

<template>
<div class="flex flex-wrap">
<a v-for="(item, index) in items" :key="index" :href="item.web" class="text-center w-1/2 my-4 md:w-1/3">
<img :src="getImageUrl(item.logo)" class="w-32 block mx-auto" />
<a-link :href="item.web" v-if="showLink">{{ item.name }}</a-link>
<a v-for="(item, index) in items" :key="index" :href="item.web" target="_blank" class="text-center w-1/2 my-4 md:w-1/3">
<img :src="getImageUrl(item.logo)" class="w-32 max-w-32 block mx-auto" />
<a-link :href="item.web" target="_blank" v-if="showLink">{{ item.name }}</a-link>
</a>
</div>
</template>
16 changes: 3 additions & 13 deletions src/content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ export const organizers: ILogo[] = [
web: 'https://geekscat.org/'
},
{
logo: 'logo-pythongirona.png',
name: 'Python Girona',
web: 'https://pythongirona.cat/'
logo: 'gdg_girona.png',
name: 'Google Dev Group Girona',
web: 'https://gdg.community.dev/gdg-girona'
}
]

Expand All @@ -25,16 +25,6 @@ export const supporters: ILogo[] = [
name: 'Ajuntament de Girona',
web: 'https://web.girona.cat/'
},
{
logo: 'pyladies.png',
name: 'PyLadies ES',
web: 'https://pyladies.com/'
},
{
logo: 'pycamp.png',
name: 'PyCamp ES',
web: 'https://pycamp.es/'
}
]

export const sponsors: ILogo[] = [
Expand Down
2 changes: 1 addition & 1 deletion src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ const handlerMenuClick = (option: IMenuOption) => {
<s-speakers />
-->
<s-code-of-conduct id="codeOfConduct" />
<!--
<s-organizers id="organizers" />
<s-supporters id="supporters" />
<!--
<s-sponsors id="sponsors" />
-->
<s-contact id="contact" />
Expand Down

0 comments on commit daf789c

Please sign in to comment.