19 lines
491 B
Vue
19 lines
491 B
Vue
<template>
|
|
<div style="width: fit-content;">
|
|
<NuxtLink style="display: flex; width: fit-content; text-decoration: none;" to="/">
|
|
<img width="140" src="~/assets/img/buildpath-high-resolution-logo-transparent.png" />
|
|
<h1 id="logo-text" style="">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> |