mirror of
https://github.com/ArthurDanjou/website-old.git
synced 2026-01-20 23:11:43 +01:00
19 lines
395 B
Vue
19 lines
395 B
Vue
<template>
|
|
<nuxt-link class="profile ml-4 flex items-center" to="/">
|
|
<img class="h-12 w-12 duration-500" src="@/assets/images/photo-rounded.png" alt="Photo of me" />
|
|
<h1 class="ml-4 font-bold text-lg">Arthur Danjou</h1>
|
|
</nuxt-link>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Logo"
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.profile:hover img {
|
|
@apply transform rotate-360;
|
|
}
|
|
</style>
|