Skip to content

Commit

Permalink
idkkkk
Browse files Browse the repository at this point in the history
  • Loading branch information
lareii committed Oct 22, 2023
1 parent 775a21f commit 1b6eb27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 21 deletions.
23 changes: 3 additions & 20 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,15 @@ export default {
TheWindow,
TheTerminal,
TheButton,
},
methods: {
changeEmoji() {
const emoji = document.getElementById('emoji')
emoji.innerText = (emoji.innerText == '' ? '✌️' : '')
document.title = (document.title == '' ? '✌️' : '')
}
}
}
</script>

<template>
<main class="sm:pt-20 relative max-w-screen-md mx-auto p-5">
<TheWindow class="mb-3" title="about_meeee.md" :decorations="3">
<div class="font-black text-5xl">
it's
<span class="whitespace-nowrap bg-[var(--color-quinary)]">emirhan!<span class="text-[10px]">a.k.a. larei</span>
</span>
&nbsp;
<span id="emoji" @dblclick="changeEmoji" class="text-[2rem] select-none">✨</span>
<div class="font-black text-5xl content-center">
it's <span class="bg-[var(--color-quinary)]">emirhan!</span>
</div>
<div class="font-bold text-lg mb-2">
17 years-old, university student. self-taught developer, open-source enthusiast. programming, music, math. <i>*insert here some lorem
Expand Down Expand Up @@ -85,13 +73,8 @@ export default {
<font-awesome-icon icon="fa-brands fa-spotify" />
</a>
</TheButton>
<TheButton color="septenary" class="w-12 text-center">
<a href="https://mastodon.com.tr/@larei" target="_blank">
<font-awesome-icon icon="fa-brands fa-mastodon" />
</a>
</TheButton>
</div>
<TheButton color="octonary" class="w-fit">
<TheButton color="octonary" class="w-fit py-2">
<a class="font-bold"
href="https://github.com/lareii/lareii.github.io" target="_blank">
gimme a ⭐
Expand Down
2 changes: 1 addition & 1 deletion src/components/TheTerminal.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script>
export default {
mounted() {
const prompt = '[you@lareii.github.io ~]$&nbsp;'
const prompt = '[you@larei.is-a.dev ~]$&nbsp;'
const terminal_element = this.$parent.$el.children.item(1).children.item(0)
const prompt_element = document.getElementById('prompt')
Expand Down

0 comments on commit 1b6eb27

Please sign in to comment.