Files
buildpath/frontend/components/Logo.vue
2024-11-25 16:21:25 +01:00

19 lines
509 B
Vue

<template>
<div style="width: fit-content;">
<NuxtLink style="display: flex; width: fit-content; text-decoration: none;" to="/">
<img style="user-select: none;" width="140" src="~/assets/img/buildpath-high-resolution-logo-transparent.png" />
<h1 id="logo-text">BuildPath</h1>
</NuxtLink>
</div>
</template>
<style>
#logo-text {
font-weight: 200;
align-content: center;
font-size: 90px;
margin-left: 20px;
user-select: none;
text-decoration: none;
}
</style>