-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* create empty resume page * fix page width issue * add experience section in my resume markdown * add remaining resume data
- Loading branch information
1 parent
90b858b
commit a42b6ef
Showing
5 changed files
with
55 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Resume | ||
|
||
--- | ||
|
||
## Experience | ||
|
||
Jan 2023 - Sep 2023: **Software Engineer** @Simplero \ | ||
Jul 2018 - Jan 2023: **Full-stack Developer** @Arba Minch University \ | ||
Dec 2017 - Jul 2018: **Website Administrator** @Arba Minch University \ | ||
Mar 2015 - Dec 2017: **Junio System Administrator** @Arba Minch University \ | ||
Jun 2018 - Feb 2019: **Code Reviewer** @Microverse | ||
|
||
## Education | ||
|
||
Feb 2018 - Aug 2018: **Full-stack Web Development** @Microverse \ | ||
Jan 2010 - Dec 2014: **BSc In Computer Science** @Addis Ababa Univerity | ||
|
||
## I love working with | ||
|
||
Vue (+Nuxt) \ | ||
Ruby on Rails \ | ||
Tailwindcss | ||
|
||
## Contact | ||
|
||
```js | ||
const me = { | ||
email: "[email protected]", | ||
github: "github.com/wuletawwonte", | ||
linkedin: "linkedin.com/in/wuletawwonte", | ||
}; | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<template> | ||
<main> | ||
<ContentDoc class="prose px-4 lg:prose-xl lg:px-8" /> | ||
<ContentDoc class="prose px-4 lg:prose-xl" /> | ||
</main> | ||
</template> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<script setup lang="ts"> | ||
const resume = ref(null); | ||
</script> | ||
|
||
<template> | ||
<div | ||
class="prose flex max-w-none flex-col font-ubuntu prose-hr:border-2 prose-hr:border-dashed" | ||
> | ||
<ContentDoc path="resume"> | ||
<template #empty> | ||
<div class="flex h-96 items-center justify-center"> | ||
<div class="flex flex-col items-center"> | ||
<p>No resume document found</p> | ||
</div> | ||
</div> | ||
</template> | ||
</ContentDoc> | ||
</div> | ||
</template> |