aboutsummaryrefslogtreecommitdiff
path: root/components/Header.vue
blob: 3d03c35fb834d104527c9e0c4cb36f9f8468a10d (plain) (blame)
1
2
3
4
5
6
7
8
<template>
    <section class="flex justify-between items-center py-4 px-8">
        <NuxtLink to="/" class="text-secondary text-4xl font-semibold">hiruki</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>