fix footer
All checks were successful
Deploy Application / deploy (push) Successful in 6s

This commit is contained in:
2025-06-12 23:47:59 +04:00
parent c768158ed0
commit 943d201a84
8 changed files with 10 additions and 44 deletions

View File

@ -1,9 +1,9 @@
<template>
<header class="[&]:bg-accent text-white py-4 container mx-auto">
<header class="py-4 container mx-auto">
<div class="flex flex-row-reverse justify-end gap-4 items-center">
<slot name="content" />
<div class="flex items-center gap-32">
<div class="russo-one-regular">
<div class="russo-one-regular cursor-pointer !text-primary">
<UiParagraph tag="span" class="[&]:text-5xl">
<RouterLink to="/"> Vino Galante </RouterLink>
</UiParagraph>
@ -19,6 +19,7 @@
<script setup lang="ts">
import UiNav from '@/components/UiNav/UiNav.vue'
import { RouterLink } from 'vue-router'
import { headerNavigation } from './_data'
import UiParagraph from '@/components/Typography/UiParagraph.vue'
</script>