summaryrefslogtreecommitdiff
path: root/src/components/widgets/Header.astro
blob: 0064a305e02f68359c11d3aeb2150225db9cb05a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
import { Icon } from 'astro-icon/components';
---

<header class="bg-black text-white py-2 px-4">
  <div class="max-w-7xl mx-auto flex items-center justify-center">
    <div class="flex items-center space-x-2">
      <Icon name="tabler:phone" class="w-4 h-4" />
      <a href="tel:+48790209770" class="text-sm font-medium hover:text-gray-300 transition-colors">
        +48 790-209-770
      </a>
    </div>
  </div>
</header>