summaryrefslogtreecommitdiff
path: root/src/components/widgets/Header.astro
blob: f67ed7e3c7dcc14e4ef9aff5d404f99d49eb94b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
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:mail" class="w-4 h-4" />
      <span class="text-sm font-medium">grestech.biuro@gmail.com</span>
    </div>
  </div>
</header>