This commit is contained in:
Vula Builder
2026-08-05 18:14:37 +00:00
parent 1a72ced351
commit ee110c903e
@@ -0,0 +1,22 @@
import Link from "next/link"
import Button from "@/components/ui/Button"
export default function FirmWelcomeSection() {
return (
<section data-vula-section="firmwelcome" id="firm-welcome" className="min-h-[70vh] flex flex-col items-center justify-center bg-[#F0F8FF] px-6 py-24 text-center">
<h1 className="text-6xl lg:text-7xl font-black text-[#1A2B3C] leading-tight tracking-tight">
Gumede &amp; Partners
</h1>
<p className="text-xl text-[#1A2B3C]/70 mt-4 max-w-xl">
Corporate law, real estate transactions, and business litigation handled with precision in Pietermaritzburg.
</p>
<div className="mt-8">
<Link href="/booking" aria-label="Schedule a consultation">
<Button size="lg" className="bg-[#FFD700] text-[#1A2B3C] hover:bg-[#FFD700]/90 border-transparent rounded-lg">
Schedule a Consultation
</Button>
</Link>
</div>
</section>
)
}