Skip to content

Commit b5b1b5a

Browse files
committed
main: Updated the about me.
1 parent d47ec9a commit b5b1b5a

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

src/components/about/AboutMe.vue

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ export default {
55
bios: [
66
{
77
id: 1,
8-
bio: "More information about me... it's coming soon!",
8+
bio: "Hey there👋 I'm Warren Coetzee, a software developer based in Perth, Australia. By day, I'm passionate about crafting clean and efficient code, particularly with PHP projects and building RESTful APIs. I'm currently diving deep into the worlds of Yii2 and Laravel frameworks, constantly learning and expanding my skillset. I also enjoy working with databases and data management in general. In my spare time, I love working on my own open-source projects and would be thrilled if others would fork and help improve them.",
9+
},
10+
{
11+
id: 2,
12+
bio: "Outside of the coding world, my interests take a more aquatic turn. I love exploring the ocean and spending time snorkelling whenever I get the chance. When I'm on dry land, you might find me grappling on the BJJ mats, cheering on the Springboks or Blue Bulls (champions all the way!), or spending quality time with my amazing wife and two fantastic kids."
13+
},
14+
{
15+
id: 3,
16+
bio: "Feel free to browse around my portfolio and see the open-source projects I'm working on, or connect with me on LinkedIn!"
917
},
1018
],
1119
};
@@ -14,18 +22,18 @@ export default {
1422
</script>
1523

1624
<template>
17-
<div class="block sm:flex sm:gap-10 mt-10 sm:mt-20">
25+
<div class="block mt-10 sm:flex sm:gap-10 sm:mt-20">
1826
<!-- About profile image -->
1927
<div class="w-full sm:w-1/4 mb-7 sm:mb-0">
2028
<img src="@/assets/images/comingsoon.png" class="rounded-xl w-96" alt="" />
2129
</div>
2230

2331
<!-- About details -->
24-
<div class="w-full sm:w-3/4 text-left">
32+
<div class="w-full text-left sm:w-3/4">
2533
<p
2634
v-for="bio in bios"
2735
:key="bio.id"
28-
class="font-general-regular mb-4 text-ternary-dark dark:text-ternary-light text-lg"
36+
class="mb-4 text-lg font-general-regular text-ternary-dark dark:text-ternary-light"
2937
>
3038
{{ bio.bio }}
3139
</p>

0 commit comments

Comments
 (0)