diff options
Diffstat (limited to 'src/components/widgets/Header.astro')
| -rw-r--r-- | src/components/widgets/Header.astro | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/components/widgets/Header.astro b/src/components/widgets/Header.astro new file mode 100644 index 0000000..0064a30 --- /dev/null +++ b/src/components/widgets/Header.astro @@ -0,0 +1,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> |
