"use client"; import { useState } from "react"; import { Menu, X } from "lucide-react"; import { Button } from "@/components/ui/button"; const navLinks = [ { href: "#about", label: "O obiekcie" }, { href: "#gallery", label: "Galeria" }, { href: "#amenities", label: "Wyposażenie" }, { href: "#pricing", label: "Cennik" }, { href: "#location", label: "Lokalizacja" }, { href: "#contact", label: "Kontakt" }, ]; export function Header() { const [mobileMenuOpen, setMobileMenuOpen] = useState(false); return (
☀️

SŁONECZKO

Domki Letniskowe

{mobileMenuOpen && ( )}
); }