2 Commits

Author SHA1 Message Date
0c04afa172 Update src/app/page.tsx 2026-01-20 20:16:44 +00:00
2e4f279a9a Update src/app/layout.tsx 2026-01-20 20:16:43 +00:00
2 changed files with 15 additions and 34 deletions

View File

@@ -5,34 +5,23 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const outfit = Outfit({ const outfit = Outfit({
variable: "--font-outfit", variable: "--font-outfit", subsets: ["latin"],
subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Tax Preparation & Accounting in San Diego | Heras", title: "Tax Preparation & Accounting in San Diego | Heras", description: "Professional tax preparation for individuals and small businesses in San Diego. Accurate filing, IRS support, and personalized consultation. Se habla español.", keywords: "tax preparation San Diego, CPA, tax filing, 1099, bookkeeping, IRS help", metadataBase: new URL("https://herasadminsolutions.com"),
description: "Professional tax preparation for individuals and small businesses in San Diego. Accurate filing, IRS support, and personalized consultation. Se habla español.",
keywords: "tax preparation San Diego, CPA, tax filing, 1099, bookkeeping, IRS help",
metadataBase: new URL("https://herasadminsolutions.com"),
alternates: { alternates: {
canonical: "https://herasadminsolutions.com" canonical: "https://herasadminsolutions.com"
}, },
openGraph: { openGraph: {
title: "Heras Administrative Solutions - San Diego Tax Preparation", title: "Heras Administrative Solutions - San Diego Tax Preparation", description: "Expert tax preparation and administrative solutions for San Diego families and businesses.", siteName: "Heras Administrative Solutions", type: "website", images: [
description: "Expert tax preparation and administrative solutions for San Diego families and businesses.",
siteName: "Heras Administrative Solutions",
type: "website",
images: [
{ {
url: "https://img.b2bpic.net/free-photo/businessman-working-his-office-businessperson-professional-environment_482257-32758.jpg", url: "https://img.b2bpic.net/free-photo/businessman-working-his-office-businessperson-professional-environment_482257-32758.jpg", alt: "Heras Tax Preparation Services"
alt: "Heras Tax Preparation Services"
} }
] ]
}, },
twitter: { twitter: {
card: "summary_large_image", card: "summary_large_image", title: "Tax Preparation in San Diego", description: "Professional, reliable tax filing from Heras Administrative Solutions"
title: "Tax Preparation in San Diego",
description: "Professional, reliable tax filing from Heras Administrative Solutions"
}, },
robots: { robots: {
index: true, index: true,

View File

@@ -27,8 +27,7 @@ export default function HomePage() {
<NavbarStyleMinimal <NavbarStyleMinimal
brandName="Heras Admin Solutions" brandName="Heras Admin Solutions"
button={{ button={{
text: "Book Appointment", text: "Book Appointment", href: "/contact"
href: "/contact"
}} }}
/> />
</div> </div>
@@ -43,16 +42,13 @@ export default function HomePage() {
]} ]}
slides={[ slides={[
{ {
imageSrc: "https://img.b2bpic.net/free-photo/businessman-working-his-office-businessperson-professional-environment_482257-32758.jpg", imageSrc: "https://img.b2bpic.net/free-photo/businessman-working-his-office-businessperson-professional-environment_482257-32758.jpg", imageAlt: "Professional tax preparation office"
imageAlt: "Professional tax preparation office"
}, },
{ {
imageSrc: "https://img.b2bpic.net/free-photo/businesswoman-using-laptop_1398-1462.jpg", imageSrc: "https://img.b2bpic.net/free-photo/businesswoman-using-laptop_1398-1462.jpg", imageAlt: "Tax documents and consultation"
imageAlt: "Tax documents and consultation"
}, },
{ {
imageSrc: "https://img.b2bpic.net/free-photo/confident-businessman-working-his-laptop_273609-12795.jpg", imageSrc: "https://img.b2bpic.net/free-photo/confident-businessman-working-his-laptop_273609-12795.jpg", imageAlt: "Organized tax filing process"
imageAlt: "Organized tax filing process"
} }
]} ]}
autoplayDelay={5000} autoplayDelay={5000}
@@ -82,8 +78,7 @@ export default function HomePage() {
<FooterSimple <FooterSimple
columns={[ columns={[
{ {
title: "Services", title: "Services", items: [
items: [
{ label: "Individual Tax Returns", href: "/services" }, { label: "Individual Tax Returns", href: "/services" },
{ label: "Self-Employed & 1099", href: "/services" }, { label: "Self-Employed & 1099", href: "/services" },
{ label: "Small Business Support", href: "/services" }, { label: "Small Business Support", href: "/services" },
@@ -91,8 +86,7 @@ export default function HomePage() {
] ]
}, },
{ {
title: "Company", title: "Company", items: [
items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "How It Works", href: "/about" }, { label: "How It Works", href: "/about" },
{ label: "Testimonials", href: "/testimonials" }, { label: "Testimonials", href: "/testimonials" },
@@ -100,18 +94,16 @@ export default function HomePage() {
] ]
}, },
{ {
title: "Contact", title: "Contact", items: [
items: [
{ label: "Call (619) 319-0228", href: "tel:+16193190228" }, { label: "Call (619) 319-0228", href: "tel:+16193190228" },
{ label: "Book Appointment", href: "/contact" }, { label: "Book Appointment", href: "/contact" },
{ label: "Get Directions", href: "https://maps.google.com/?q=7079+Mission+Gorge+Rd+Unit+G+San+Diego+CA+92120" } { label: "Get Directions", href: "https://maps.google.com/?q=7079+Mission+Gorge+Rd+Unit+G+San+Diego+CA+92120" }
] ]
}, },
{ {
title: "Legal", title: "Legal", items: [
items: [ { label: "Privacy Policy", href: "/privacy" },
{ label: "Privacy Policy" }, { label: "Terms of Service", href: "/terms" }
{ label: "Terms of Service" }
] ]
} }
]} ]}