import type { Metadata } from 'next'; import { Hero } from '@/components/hero'; import { ProcessSteps } from '@/components/process-steps'; import { ServiceCard } from '@/components/service-card'; import { Testimonial } from '@/components/testimonial'; import { TrustPanel } from '@/components/trust-panel'; import { CTASection } from '@/components/cta-section'; import { getAllServices } from '@/data/services'; import testimonialsData from '@/data/testimonials.json'; export const metadata: Metadata = { title: 'Professional Tax Planning & Preparation Services', description: 'Strategic year-round tax planning and professional tax preparation services in Corpus Christi, Texas. Save money and reduce stress with our comprehensive tax solutions.', openGraph: { title: 'Professional Tax Planning & Preparation Services', description: 'Strategic year-round tax planning and professional tax preparation services in Corpus Christi, Texas.', images: ['/images/home-hero.jpg'], }, }; export default function TaxPlanningPage() { const services = getAllServices(); const testimonials = testimonialsData.slice(0, 3); return ( <>

Comprehensive Tax Services

From strategic planning to expert preparation, we provide the full spectrum of tax services to meet your needs.

{services.map((service) => ( ))}

What Our Clients Say

Don't just take our word for it. Here's what our clients have to say about their experience.

{testimonials.map((testimonial) => ( ))}
); }