chore: update
All checks were successful
Deploy Application / deploy (push) Successful in 5s

This commit is contained in:
2025-06-12 21:30:21 +04:00
parent 5babc5db35
commit 42235420b9
15 changed files with 192 additions and 39 deletions

View File

@ -1,11 +1,22 @@
<template>
<header class="[&]:bg-accent text-white py-4 px-2 border-b border-b-white">
<header class="[&]:bg-accent text-white py-4 container mx-auto">
<div class="flex flex-row-reverse justify-end gap-4 items-center">
<slot name="content" />
<div class="flex"></div>
<div class="flex items-center gap-32">
<div class="russo-one-regular">
<UiParagraph tag="span" class="[&]:text-5xl">Vino Galante</UiParagraph>
</div>
<div class="flex space-x-10">
<UiNav :nav-content="headerNavigation" />
</div>
</div>
</div>
<slot name="right-icons" />
</header>
</template>
<script setup lang="ts"></script>
<script setup lang="ts">
import UiNav from '@/components/UiNav/UiNav.vue'
import { headerNavigation } from './_data'
import UiParagraph from '@/components/Typography/UiParagraph.vue'
</script>