108 lines
3.9 KiB
TypeScript
108 lines
3.9 KiB
TypeScript
'use client';
|
|
|
|
import Link from 'next/link';
|
|
import { useState } from 'react';
|
|
import { Menu, X, Phone } from 'lucide-react';
|
|
import { Button } from '@/components/ui/button';
|
|
|
|
const navigation = [
|
|
{ name: 'Services', href: '/services' },
|
|
{ name: 'About', href: '/about' },
|
|
{ name: 'Resources', href: '/resources' },
|
|
{ name: 'Reviews', href: '/reviews' },
|
|
{ name: 'Contact', href: '/contact' },
|
|
];
|
|
|
|
export function SiteHeader() {
|
|
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
|
|
|
|
return (
|
|
<header className="bg-cloud shadow-sm">
|
|
<nav className="mx-auto flex max-w-7xl items-center justify-between p-4 lg:px-6" aria-label="Global">
|
|
<div className="flex lg:flex-1">
|
|
<Link href="/" className="-m-1.5 p-1.5">
|
|
<span className="sr-only">Hampton Brown & Associates, PC</span>
|
|
<div className="text-2xl font-bold text-navy">Hampton Brown & Associates, PC</div>
|
|
</Link>
|
|
</div>
|
|
<div className="flex lg:hidden">
|
|
<button
|
|
type="button"
|
|
className="-m-2.5 inline-flex items-center justify-center rounded-md p-2.5 text-slate"
|
|
onClick={() => setMobileMenuOpen(true)}
|
|
>
|
|
<span className="sr-only">Open main menu</span>
|
|
<Menu className="h-6 w-6" aria-hidden="true" />
|
|
</button>
|
|
</div>
|
|
<div className="hidden lg:flex lg:gap-x-12">
|
|
{navigation.map((item) => (
|
|
<Link
|
|
key={item.name}
|
|
href={item.href}
|
|
className="text-sm font-semibold leading-6 text-ink hover:text-navy transition-colors"
|
|
>
|
|
{item.name}
|
|
</Link>
|
|
))}
|
|
</div>
|
|
<div className="hidden lg:flex lg:flex-1 lg:justify-end">
|
|
<Button asChild>
|
|
<Link href="/contact">
|
|
<Phone className="mr-2 h-4 w-4" />
|
|
Book a Call
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
</nav>
|
|
|
|
{/* Mobile menu */}
|
|
{mobileMenuOpen && (
|
|
<div className="lg:hidden">
|
|
<div className="fixed inset-0 z-50" />
|
|
<div className="fixed inset-y-0 right-0 z-50 w-full overflow-y-auto bg-cloud px-6 py-6 sm:max-w-sm sm:ring-1 sm:ring-slate-900/10">
|
|
<div className="flex items-center justify-between">
|
|
<Link href="/" className="-m-1.5 p-1.5">
|
|
<span className="sr-only">Hampton Brown & Associates, PC</span>
|
|
<div className="text-2xl font-bold text-navy">Hampton Brown & Associates, PC</div>
|
|
</Link>
|
|
<button
|
|
type="button"
|
|
className="-m-2.5 rounded-md p-2.5 text-slate"
|
|
onClick={() => setMobileMenuOpen(false)}
|
|
>
|
|
<span className="sr-only">Close menu</span>
|
|
<X className="h-6 w-6" aria-hidden="true" />
|
|
</button>
|
|
</div>
|
|
<div className="mt-6 flow-root">
|
|
<div className="-my-6 divide-y divide-slate-500/10">
|
|
<div className="space-y-2 py-6">
|
|
{navigation.map((item) => (
|
|
<Link
|
|
key={item.name}
|
|
href={item.href}
|
|
className="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-ink hover:bg-sand"
|
|
onClick={() => setMobileMenuOpen(false)}
|
|
>
|
|
{item.name}
|
|
</Link>
|
|
))}
|
|
</div>
|
|
<div className="py-6">
|
|
<Button asChild className="w-full">
|
|
<Link href="/contact">
|
|
<Phone className="mr-2 h-4 w-4" />
|
|
Book a Call
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</header>
|
|
);
|
|
}
|