Skip to content

Commit cb8536f

Browse files
committed
Updated card designs and descriptions to match designs
1 parent a16c318 commit cb8536f

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

src/components/cards/ImageCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const props = defineProps<{
88
</script>
99

1010
<template>
11-
<div class="w-32 xl:w-64 sm:w-32 h-full flex-col justify-start items-start gap-4 flex">
11+
<div class="w-32 xl:w-64 sm:w-32 h-full flex-col justify-between items-start gap-4 flex">
1212
<img class="w-32 xl:w-64 sm:w-32 h-32 xl:h-64 sm:h-32 object-cover object-center text-white" :src="imageSrc" :alt="cardName" />
1313
<h3 class="text-light">{{ props.cardName }}</h3>
1414
<p>{{ props.cardDescription }}</p>

src/components/cards/LinkCard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const props = defineProps<{
1111
</script>
1212

1313
<template>
14-
<div class="w-32 xl:w-64 sm:w-32 h-full flex-col justify-start items-start gap-4 flex">
14+
<div class="w-32 xl:w-64 sm:w-32 h-full flex-col justify-between items-start gap-4 flex">
1515
<a class="flex-col gap-4 flex" :href="cardUrl">
1616
<img class="w-32 xl:w-64 sm:w-32 h-32 xl:h-64 sm:h-32 object-cover object-center" :src="imageSrc"
1717
:alt="cardName" />

src/components/lists/BrandsData.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const brandList = [
33
src: '/images/orgs/org_taltech_it.png',
44
url: 'https://taltech.ee/en/school-of-information-technologies',
55
name: 'TalTech School of IT',
6-
description: 'Commissioned designs like promotional material and stickers.'
6+
description: 'Commissioned designs like promotional material.'
77
},
88
{
99
src: '/images/orgs/org_gamedev_estonia.png',
@@ -15,13 +15,13 @@ export const brandList = [
1515
src: '/images/orgs/org_lvlup.png',
1616
url: 'https://www.rara.ee/sundmused/interaktiivne-videomangude-muuseum-lvlup/',
1717
name: 'LVLup! Video Game Museum',
18-
description: 'Collaborated during gamedev events.'
18+
description: 'Collaborated during game development events.'
1919
},
2020
{
2121
src: '/images/orgs/org_eka.png',
2222
url: 'https://www.artun.ee/et/avaleht/',
2323
name: 'Estonian Academy of Arts',
24-
description: 'Hosting regular meetups at EKA.'
24+
description: 'Collaborating and hosting regular meetups on EKA grounds.'
2525
},
2626
{
2727
src: '/images/orgs/org_pycord.png',

src/components/lists/DesignsData.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ export const designList = [
22
{ src: '/images/commissions/commission_tigo.png', name: 'Tigo', description: 'Profile picture' },
33
{ src: '/images/commissions/commission_katsky.png', name: 'Katsky', description: 'Profile picture' },
44
{ src: '/images/commissions/commission_enoki.png', name: 'Enoki', description: 'Profile picture' },
5-
{ src: '/images/commissions/commission_bobdotcom.png', name: 'BobDotCom', description: 'Profile picture' },
65
{ src: '/images/commissions/commission_yikizi.png', name: 'Yikizi', description: 'Profile picture' },
6+
{ src: '/images/commissions/commission_bobdotcom.png', name: 'BobDotCom', description: 'Self-branding on social media' },
77
{ src: '/images/commissions/commission_apex.png', name: 'Apex', description: 'Discord bot picture' },
88
{ src: '/images/commissions/commission_induo.png', name: 'inDuo', description: 'Discord server picture' },
9-
{ src: '/images/commissions/commission_aegcon.png', name: 'Aegcon 2022', description: 'GameDev Estonia Summer Conference logo' },
9+
{ src: '/images/commissions/commission_aegcon.png', name: 'Aegcon 2022', description: 'GDE Summer Conference logo' },
1010
];

src/components/lists/EventsData.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ export const eventList = [
99
src: '/images/events/event_gamedev_guild.png',
1010
url: 'https://www.linkedin.com/posts/alacrisdevs_v10-of-gamedev-guild-is-a-go-weve-graduated-activity-7252672283402534912-Iud0/',
1111
name: 'Gamedev Guild',
12-
description: 'A casual meetup for Estonian gamedevs to showcase projects in an informal setting.'
12+
description: 'A casual meetup for Estonian gamedevs to showcase projects.'
1313
},
1414
];

src/components/lists/GamesData.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ export const gameList = [
2121
src: '/images/games/game_awe.svg',
2222
url: 'https://induo.dev/',
2323
name: 'At World\'s End',
24-
description: '[Currently in the works]'
24+
description: '[Currently in the works - fight against time]'
2525
},
2626
];

0 commit comments

Comments
 (0)