aboutsummaryrefslogtreecommitdiff
path: root/components/Header.vue
blob: dc33d663e042a38ec72d325da93f01e88988c793 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<template>
    <section class="flex justify-between items-center py-4 px-8">
        <NuxtLink to="/">
            <h1 class="text-secondary text-4xl font-bold">hiruki</h1>
        </NuxtLink>
        <NuxtLink class="text-primary bg-secondary text-xl rounded-sm pb-1 px-1.5 hover:bg-opacity-75">
            <Icon name="heroicons-solid:magnifying-glass" />
        </NuxtLink>
    </section>
</template>