aboutsummaryrefslogtreecommitdiff
path: root/components/Header.vue
blob: 7789caf07749dfe23a760e420f7d1ecc5e43558e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<template>
    <section class="flex justify-between items-center p-4">
        <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>