Weiter
This commit is contained in:
@@ -41,7 +41,7 @@ export function CTASection({
|
||||
<h2 className={`text-3xl font-bold tracking-tight ${textClass} sm:text-4xl`}>
|
||||
{title}
|
||||
</h2>
|
||||
<p className={`mt-6 text-lg leading-8 ${isDark ? 'text-slate-300' : 'text-slate-100'}`}>
|
||||
<p className={`mt-6 text-lg leading-8 ${isDark ? 'text-cloud/90' : 'text-slate-100'}`}>
|
||||
{description}
|
||||
</p>
|
||||
<div className="mt-8 flex items-center justify-center gap-x-6">
|
||||
|
||||
@@ -50,13 +50,14 @@ export function Hero({
|
||||
</div>
|
||||
</div>
|
||||
<div className={`mx-auto mt-12 flex max-w-2xl sm:mt-16 lg:ml-8 lg:mr-0 lg:mt-0 lg:max-w-none lg:flex-none xl:ml-20 ${reverse ? 'lg:order-1' : ''}`}>
|
||||
<div className="max-w-2xl flex-none sm:max-w-3xl lg:max-w-none">
|
||||
<div className="max-w-3xl flex-none sm:max-w-4xl lg:max-w-none flex justify-center">
|
||||
<Image
|
||||
src={imageSrc}
|
||||
alt={imageAlt}
|
||||
width={1200}
|
||||
height={800}
|
||||
className="w-[40rem] rounded-md bg-white/5 shadow-2xl ring-1 ring-white/10"
|
||||
width={1000}
|
||||
height={500}
|
||||
className="w-full max-w-2xl object-contain"
|
||||
priority
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -31,26 +31,26 @@ export function SiteFooter() {
|
||||
<div className="xl:grid xl:grid-cols-3 xl:gap-8">
|
||||
<div className="space-y-8">
|
||||
<div className="text-2xl font-bold">Hampton, Brown & Associates, PC</div>
|
||||
<p className="text-sm leading-6 text-slate-300">
|
||||
<p className="text-sm leading-6 text-slate-200">
|
||||
Expert federal income and estate tax services, financial planning, and goal-oriented strategies in Corpus Christi, Texas.
|
||||
We assist our clients with their tax and accounting needs and achieving economic goals.
|
||||
</p>
|
||||
<div className="space-y-4">
|
||||
<div className="flex items-center space-x-3">
|
||||
<MapPin className="h-5 w-5 text-teal" />
|
||||
<span className="text-sm">Corpus Christi, TX</span>
|
||||
<span className="text-sm text-slate-200">Corpus Christi, TX</span>
|
||||
</div>
|
||||
<div className="flex items-center space-x-3">
|
||||
<Phone className="h-5 w-5 text-teal" />
|
||||
<span className="text-sm">(361) 888-7711</span>
|
||||
<span className="text-sm text-slate-200">(361) 888-7711</span>
|
||||
</div>
|
||||
<div className="flex items-center space-x-3">
|
||||
<Mail className="h-5 w-5 text-teal" />
|
||||
<span className="text-sm">info@hamptonbrown.com</span>
|
||||
<span className="text-sm text-slate-200">info@hamptonbrown.com</span>
|
||||
</div>
|
||||
<div className="flex items-center space-x-3">
|
||||
<Clock className="h-5 w-5 text-teal" />
|
||||
<span className="text-sm">Mon-Fri 9AM-5PM</span>
|
||||
<span className="text-sm text-slate-200">Mon-Fri 9AM-5PM</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -61,7 +61,7 @@ export function SiteFooter() {
|
||||
<ul role="list" className="mt-6 space-y-4">
|
||||
{navigation.services.map((item) => (
|
||||
<li key={item.name}>
|
||||
<Link href={item.href} className="text-sm leading-6 text-slate-300 hover:text-cloud transition-colors">
|
||||
<Link href={item.href} className="text-sm leading-6 text-slate-200 hover:text-cloud transition-colors">
|
||||
{item.name}
|
||||
</Link>
|
||||
</li>
|
||||
@@ -73,7 +73,7 @@ export function SiteFooter() {
|
||||
<ul role="list" className="mt-6 space-y-4">
|
||||
{navigation.company.map((item) => (
|
||||
<li key={item.name}>
|
||||
<Link href={item.href} className="text-sm leading-6 text-slate-300 hover:text-cloud transition-colors">
|
||||
<Link href={item.href} className="text-sm leading-6 text-slate-200 hover:text-cloud transition-colors">
|
||||
{item.name}
|
||||
</Link>
|
||||
</li>
|
||||
@@ -87,7 +87,7 @@ export function SiteFooter() {
|
||||
<ul role="list" className="mt-6 space-y-4">
|
||||
{navigation.legal.map((item) => (
|
||||
<li key={item.name}>
|
||||
<Link href={item.href} className="text-sm leading-6 text-slate-300 hover:text-cloud transition-colors">
|
||||
<Link href={item.href} className="text-sm leading-6 text-slate-200 hover:text-cloud transition-colors">
|
||||
{item.name}
|
||||
</Link>
|
||||
</li>
|
||||
@@ -98,12 +98,12 @@ export function SiteFooter() {
|
||||
<h3 className="text-sm font-semibold leading-6">Resources</h3>
|
||||
<ul role="list" className="mt-6 space-y-4">
|
||||
<li>
|
||||
<Link href="/resources" className="text-sm leading-6 text-slate-300 hover:text-cloud transition-colors">
|
||||
<Link href="/resources" className="text-sm leading-6 text-slate-200 hover:text-cloud transition-colors">
|
||||
Secure Upload
|
||||
</Link>
|
||||
</li>
|
||||
<li>
|
||||
<Link href="/resources" className="text-sm leading-6 text-slate-300 hover:text-cloud transition-colors">
|
||||
<Link href="/resources" className="text-sm leading-6 text-slate-200 hover:text-cloud transition-colors">
|
||||
Payment Portal
|
||||
</Link>
|
||||
</li>
|
||||
@@ -113,7 +113,7 @@ export function SiteFooter() {
|
||||
</div>
|
||||
</div>
|
||||
<div className="mt-12 border-t border-slate-700 pt-6 sm:mt-16 lg:mt-20">
|
||||
<p className="text-xs leading-5 text-slate-400">
|
||||
<p className="text-xs leading-5 text-slate-300">
|
||||
© {new Date().getFullYear()} Hampton, Brown & Associates, PC. All rights reserved.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@@ -27,7 +27,7 @@ export function TrustPanel() {
|
||||
<h2 className="text-3xl font-bold tracking-tight text-cloud sm:text-4xl">
|
||||
Your Security & Trust Are Our Priority
|
||||
</h2>
|
||||
<p className="mt-6 text-lg leading-8 text-slate-300">
|
||||
<p className="mt-6 text-lg leading-8 text-cloud/90">
|
||||
We understand the sensitive nature of your financial information. That's why we've implemented the highest security standards to protect your data.
|
||||
</p>
|
||||
</div>
|
||||
@@ -42,7 +42,7 @@ export function TrustPanel() {
|
||||
<CardTitle className="text-cloud">{feature.title}</CardTitle>
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<CardDescription className="text-slate-300">
|
||||
<CardDescription className="text-cloud/90">
|
||||
{feature.description}
|
||||
</CardDescription>
|
||||
</CardContent>
|
||||
|
||||
Reference in New Issue
Block a user