feat: implement initial site structure with Header, Footer, Electrical Services, and Photo Gallery pages.
This commit is contained in:
@@ -98,10 +98,9 @@ export default function Footer() {
|
||||
<div>
|
||||
<h4 className="font-bold text-white mb-6 uppercase tracking-wider text-sm">Services</h4>
|
||||
<ul className="space-y-4 text-sm text-gray-400">
|
||||
<li><Link href="/electrical-services" className="hover:text-[color:var(--brand)] transition-colors">Residential</Link></li>
|
||||
<li><Link href="/electrical-services" className="hover:text-[color:var(--brand)] transition-colors">Commercial</Link></li>
|
||||
<li><Link href="/electrical-services" className="hover:text-[color:var(--brand)] transition-colors">New Construction</Link></li>
|
||||
<li><Link href="/electrical-services" className="hover:text-[color:var(--brand)] transition-colors">Generator Installation</Link></li>
|
||||
<li><Link href="/electrical-services#residential" className="hover:text-[color:var(--brand)] transition-colors">Residential</Link></li>
|
||||
<li><Link href="/electrical-services#commercial" className="hover:text-[color:var(--brand)] transition-colors">Commercial</Link></li>
|
||||
<li><Link href="/electrical-services#generator" className="hover:text-[color:var(--brand)] transition-colors">Generator Installation</Link></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -13,17 +13,17 @@ export default function Header() {
|
||||
<header className="fixed inset-x-0 top-0 z-50 border-b border-white/10 bg-[color:var(--bg-dark)]/95 backdrop-blur-md">
|
||||
<div className="mx-auto flex h-20 max-w-7xl items-center justify-between px-6 lg:px-8">
|
||||
<Link href="/" className="flex items-center gap-3 group">
|
||||
<div className="relative h-10 w-10 transition-transform group-hover:scale-105">
|
||||
<div className="relative h-24 w-24 transition-transform group-hover:scale-105 self-end -mb-4">
|
||||
<Image
|
||||
src="/images/logo.png"
|
||||
alt="Budd Electric Logo"
|
||||
width={40}
|
||||
height={40}
|
||||
width={96}
|
||||
height={96}
|
||||
priority
|
||||
className="object-contain invert hue-rotate-180 saturate-[1000%] contrast-[1.5] brightness-90"
|
||||
/>
|
||||
</div>
|
||||
<div className="flex flex-col">
|
||||
<div className="flex flex-col self-center">
|
||||
<span className="font-display text-xl font-bold tracking-tight uppercase leading-none text-white">Budd Electric</span>
|
||||
<span className="text-[10px] font-medium tracking-wider text-gray-400 uppercase">Since 1969 • TECL #17007</span>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user