Add complete project files

This commit is contained in:
2025-08-26 08:59:13 +02:00
parent 2756116b75
commit 1da752da34
69 changed files with 11933 additions and 0 deletions

92
data/services.ts Executable file
View File

@@ -0,0 +1,92 @@
import { Service } from '@/lib/validations';
export const services: Service[] = [
{
id: 'public-accounting',
title: 'Public Accounting',
description: 'Comprehensive public accounting services to help you maintain accurate financial records and meet regulatory requirements.',
slug: 'public-accounting',
image: '/images/service-tax-planning.jpg',
heroImage: '/images/service-tax-planning.jpg',
detailImage: '/images/service-tax-planning.jpg',
features: [
'Financial statement preparation',
'Bookkeeping and record keeping',
'Audit support and preparation',
'Internal control systems',
'Compliance and regulatory guidance',
],
},
{
id: 'federal-income-tax',
title: 'Federal Income Tax',
description: 'Comprehensive federal income tax services including preparation, planning, and strategic tax management.',
slug: 'federal-income-tax',
image: '/images/service-income-tax.jpg',
heroImage: '/images/service-income-tax.jpg',
detailImage: '/images/service-income-tax.jpg',
features: [
'Individual tax return preparation',
'Business tax return preparation',
'Tax planning and strategy',
'E-filing and direct deposit',
'Audit support and representation',
],
},
{
id: 'estate-tax-planning',
title: 'Estate Tax Planning',
description: 'Comprehensive estate tax planning to protect your legacy and minimize estate taxes.',
slug: 'estate-tax-planning',
image: '/images/service-estate-tax.jpg',
heroImage: '/images/service-estate-tax.jpg',
detailImage: '/images/service-estate-tax.jpg',
features: [
'Estate tax analysis and planning',
'Trust planning and administration',
'Gift tax strategies',
'Succession planning',
'Estate tax return preparation',
],
},
{
id: 'financial-planning',
title: 'Financial Planning',
description: 'Comprehensive financial planning to help you achieve your economic goals and control your financial environment.',
slug: 'financial-planning',
image: '/images/service-financial-planning.jpg',
heroImage: '/images/service-financial-planning.jpg',
detailImage: '/images/service-financial-planning.jpg',
features: [
'Economic goal setting',
'Investment strategy',
'Risk management',
'Cash flow analysis',
'Goal-based financial planning',
],
},
{
id: 'advisory',
title: 'Advisory Services',
description: 'Strategic advisory services to help you achieve your business and economic goals.',
slug: 'advisory',
image: '/images/service-advisory.jpg',
heroImage: '/images/service-advisory.jpg',
detailImage: '/images/service-advisory.jpg',
features: [
'Business structure analysis',
'Financial statement analysis',
'Cash flow management',
'Economic goal development',
'Business planning and strategy',
],
},
];
export function getServiceBySlug(slug: string): Service | undefined {
return services.find((service) => service.slug === slug);
}
export function getAllServices(): Service[] {
return services;
}

44
data/testimonials.json Executable file
View File

@@ -0,0 +1,44 @@
[
{
"id": "1",
"quote": "Hamton Brown CPA transformed our tax planning approach. Their year-round strategy saved us over $15,000 in taxes last year alone.",
"author": "Sarah Johnson",
"role": "Small Business Owner",
"rating": 5
},
{
"id": "2",
"quote": "Professional, responsive, and incredibly knowledgeable. They made our complex estate tax planning feel straightforward and manageable.",
"author": "Michael Chen",
"role": "Retired Executive",
"rating": 5
},
{
"id": "3",
"quote": "The team at Hamton Brown goes above and beyond. They don't just prepare taxes—they help us understand our financial picture.",
"author": "Lisa Rodriguez",
"role": "Restaurant Owner",
"rating": 5
},
{
"id": "4",
"quote": "After years of struggling with tax preparation, finding Hamton Brown was a game-changer. Clear communication and transparent pricing.",
"author": "David Thompson",
"role": "Freelance Consultant",
"rating": 5
},
{
"id": "5",
"quote": "Their business advisory services helped us restructure our company and save significantly on taxes while improving our cash flow.",
"author": "Jennifer Williams",
"role": "Tech Startup Founder",
"rating": 5
},
{
"id": "6",
"quote": "Trustworthy, professional, and results-driven. Hamton Brown has been our trusted financial partner for over five years.",
"author": "Robert Davis",
"role": "Real Estate Investor",
"rating": 5
}
]