import type { Metadata } from 'next';
import { CTASection } from '@/components/cta-section';
import { services } from '@/data/services';
import Image from 'next/image';
export const metadata: Metadata = {
title: 'Services - Hampton, Brown & Associates, PC',
description: 'Comprehensive CPA services including public accounting, federal income tax, estate tax planning, financial planning, and advisory services.',
openGraph: {
title: 'Services - Hampton, Brown & Associates, PC',
description: 'Comprehensive CPA services for individuals and businesses.',
images: ['/images/service-tax-planning.jpg'],
},
};
export default function PublicAccountingPage() {
const service = services.find(s => s.id === 'public-accounting');
if (!service) {
return
Service not found
;
}
return (
{/* Hero */}
Public Accounting Services
Professional assurance services providing credibility and assurance for your financial statements and business operations.
{/* Service Detail */}
{/* Text column */}
Professional Assurance Services
Public Accounting
Independent assurance for credible financial statements and stronger business controls.
What We Do
- Financial statement audits
- Reviews & compilations
- Internal control assessments
- Fraud risk evaluation
- Compliance testing
- Management recommendations
Outcomes
- Enhanced financial credibility
- Improved internal controls
- Better access to capital
- Regulatory assurance
{/* Visual card */}
Public Accounting
Professional Assurance Services
{/* Bottom CTA */}
Ready to Get Started?
Contact us today to learn how our services can help you achieve your goals.
);
}