diff --git a/app/resources/page.tsx b/app/resources/page.tsx index 3899c3f..0094458 100644 --- a/app/resources/page.tsx +++ b/app/resources/page.tsx @@ -25,8 +25,8 @@ export default function ResourcesPage() { subtitle="Access your account, upload documents securely, and manage payments through our client portal. Your information is protected with bank-level security." ctaText="Access Portal" ctaHref="#portal" - imageSrc="/images/resources-hero.jpg" - imageAlt="Abstract tech-meets-trust visual of a laptop showing a secure upload UI with a subtle lock icon" + imageSrc="/images/laptop_lock_icon.png" + imageAlt="Secure laptop with lock icon representing our protected client portal" />
diff --git a/app/reviews/page.tsx b/app/reviews/page.tsx index cc5dd1a..583f554 100644 --- a/app/reviews/page.tsx +++ b/app/reviews/page.tsx @@ -23,8 +23,8 @@ export default function ReviewsPage() { subtitle="Don't just take our word for it. Here's what our clients have to say about their experience with Hamton Brown CPA. Real testimonials from real people we've helped." ctaText="Read All Reviews" ctaHref="#testimonials" - imageSrc="/images/reviews-bg.jpg" - imageAlt="Soft-focus office background with bokeh lights, navy-teal accent object on desk" + imageSrc="/images/background_office.png" + imageAlt="Professional office background representing our business environment" />
diff --git a/components/ServiceSection.tsx b/components/ServiceSection.tsx index daabc29..638614f 100644 --- a/components/ServiceSection.tsx +++ b/components/ServiceSection.tsx @@ -76,12 +76,12 @@ export default function ServiceSection({ service, index }: Props) { {/* Visual card */}
{service.image && ( -
+
{service.title}
diff --git a/public/images/background_office.png b/public/images/background_office.png new file mode 100644 index 0000000..8cfcac1 Binary files /dev/null and b/public/images/background_office.png differ diff --git a/public/images/laptop_lock_icon.png b/public/images/laptop_lock_icon.png new file mode 100644 index 0000000..d1fd7b0 Binary files /dev/null and b/public/images/laptop_lock_icon.png differ