finlion-website/src/components/home/Hero.tsx
2024-11-27 10:17:51 -06:00

48 lines
2.1 KiB
TypeScript

import Image from 'next/image';
import Link from 'next/link';
import { ArrowRight } from 'lucide-react';
export default function Hero() {
return (
<div className="relative bg-white">
<div className="mx-auto max-w-7xl lg:grid lg:grid-cols-12 lg:gap-x-8 lg:px-8">
<div className="px-6 pb-24 pt-10 sm:pb-32 lg:col-span-7 lg:px-0 lg:pb-56 lg:pt-48 xl:col-span-6">
<div className="mx-auto max-w-2xl lg:mx-0">
<h1 className="mt-24 text-4xl font-bold tracking-tight text-gray-900 sm:mt-10 sm:text-6xl">
Financial Excellence Since 1978
</h1>
<p className="mt-6 text-lg leading-8 text-gray-600">
Specialized expertise in financial consulting, accounting, and nonprofit organization services.
Providing professional guidance for your business success.
</p>
<div className="mt-10 flex items-center gap-x-6">
<Link
href="/contact"
className="rounded-md bg-blue-800 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-blue-700 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-blue-600 transition-colors flex items-center gap-2"
>
Schedule Consultation
<ArrowRight className="h-4 w-4" />
</Link>
<Link
href="/services"
className="text-sm font-semibold leading-6 text-gray-900 hover:text-blue-800 transition-colors"
>
View Services <span aria-hidden="true"></span>
</Link>
</div>
</div>
</div>
<div className="relative lg:col-span-5 lg:-mr-8 xl:absolute xl:inset-0 xl:left-1/2 xl:mr-0">
<Image
className="aspect-[3/2] w-full bg-gray-50 object-cover lg:absolute lg:inset-0 lg:aspect-auto lg:h-full"
src="/images/mark.jpg"
alt="Mark Apodaca, MBA, PRP - Financial Consultant"
width={1000}
height={1000}
priority
/>
</div>
</div>
</div>
);
}