Add complete project files
This commit is contained in:
164
app/services/page.tsx
Executable file
164
app/services/page.tsx
Executable file
@@ -0,0 +1,164 @@
|
||||
import ServiceSection from "@/components/ServiceSection";
|
||||
|
||||
export const metadata = {
|
||||
title: "Services",
|
||||
description: "Comprehensive CPA services overview.",
|
||||
};
|
||||
|
||||
const services = [
|
||||
{
|
||||
slug: "federal-income-tax",
|
||||
title: "Federal Income Tax",
|
||||
subtitle: "Tax Preparation & Strategic Planning",
|
||||
blurb:
|
||||
"Complete tax preparation services combined with proactive planning to minimize liability and maximize savings.",
|
||||
whatWeDo: [
|
||||
"Individual & business tax returns",
|
||||
"Year-round tax planning",
|
||||
"Quarterly estimated taxes",
|
||||
"Multi-state filings",
|
||||
"Audit representation",
|
||||
"Tax resolution services",
|
||||
],
|
||||
outcomes: [
|
||||
"Reduced tax liability",
|
||||
"Accurate, compliant filings",
|
||||
"Peace of mind during tax season",
|
||||
"Professional audit support",
|
||||
],
|
||||
iconName: "calculator",
|
||||
image: "/images/service-income-tax.jpg",
|
||||
},
|
||||
{
|
||||
slug: "estate-tax-planning",
|
||||
title: "Estate Tax Planning",
|
||||
subtitle: "Protect and Transfer Your Wealth",
|
||||
blurb:
|
||||
"Comprehensive strategies to minimize estate taxes and transfer wealth efficiently to future generations.",
|
||||
whatWeDo: [
|
||||
"Estate tax reduction strategies",
|
||||
"Business succession planning",
|
||||
"Trust design & implementation",
|
||||
"Gift tax planning",
|
||||
"Charitable giving strategies",
|
||||
"GST tax planning",
|
||||
],
|
||||
outcomes: [
|
||||
"Minimized estate tax burden",
|
||||
"Smooth transfer to heirs",
|
||||
"Protected family business interests",
|
||||
"Optimized charitable impact",
|
||||
],
|
||||
iconName: "shield",
|
||||
image: "/images/service-estate-tax.jpg",
|
||||
},
|
||||
{
|
||||
slug: "financial-planning",
|
||||
title: "Financial Planning",
|
||||
subtitle: "Build and Protect Your Financial Future",
|
||||
blurb:
|
||||
"Goal-based financial planning to align investments, cash flow, and risk management with your long-term objectives.",
|
||||
whatWeDo: [
|
||||
"Retirement projections",
|
||||
"Investment strategy",
|
||||
"Cash-flow & budgeting",
|
||||
"Risk & insurance planning",
|
||||
"Education funding",
|
||||
"Debt optimization",
|
||||
],
|
||||
outcomes: [
|
||||
"Clear path to retirement",
|
||||
"Optimized portfolio",
|
||||
"Improved cash flow",
|
||||
"Protection against risks",
|
||||
],
|
||||
iconName: "trend-up",
|
||||
image: "/images/service-financial-planning.jpg",
|
||||
},
|
||||
{
|
||||
slug: "public-accounting",
|
||||
title: "Public Accounting",
|
||||
subtitle: "Professional Assurance Services",
|
||||
blurb:
|
||||
"Independent assurance for credible financial statements and stronger business controls.",
|
||||
whatWeDo: [
|
||||
"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",
|
||||
],
|
||||
iconName: "document",
|
||||
image: "/images/service-tax-planning.jpg",
|
||||
},
|
||||
{
|
||||
slug: "advisory",
|
||||
title: "Advisory Services",
|
||||
subtitle: "Strategic Business Guidance",
|
||||
blurb:
|
||||
"Data-driven advice to make informed decisions and optimize performance.",
|
||||
whatWeDo: [
|
||||
"Business valuation",
|
||||
"Financial analysis & reporting",
|
||||
"Strategic planning facilitation",
|
||||
"Performance improvement",
|
||||
"M&A support",
|
||||
"Cash-flow management",
|
||||
],
|
||||
outcomes: [
|
||||
"Confident decisions",
|
||||
"Operational efficiency",
|
||||
"Enhanced business value",
|
||||
"Competitive advantage",
|
||||
],
|
||||
iconName: "users",
|
||||
image: "/images/service-advisory.jpg",
|
||||
},
|
||||
];
|
||||
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<main>
|
||||
{/* Hero */}
|
||||
<section className="bg-navy py-16 sm:py-24">
|
||||
<div className="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
||||
<h1 className="text-4xl font-bold tracking-tight text-cloud sm:text-5xl mb-6">
|
||||
Comprehensive CPA Services for Your Success
|
||||
</h1>
|
||||
<p className="text-xl text-cloud/90 max-w-3xl mx-auto mb-8">
|
||||
From tax preparation to strategic planning, we provide the expertise and guidance you need.
|
||||
</p>
|
||||
<button className="bg-cloud text-navy px-8 py-3 rounded-lg font-semibold hover:bg-cloud/90 transition-colors border-2 border-cloud">
|
||||
Schedule a Consultation
|
||||
</button>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Services */}
|
||||
{services.map((service, index) => (
|
||||
<ServiceSection key={service.slug} service={service} index={index} />
|
||||
))}
|
||||
|
||||
{/* Bottom CTA */}
|
||||
<section className="py-16 sm:py-24">
|
||||
<div className="max-w-4xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
||||
<h2 className="text-2xl font-semibold">Ready to Get Started?</h2>
|
||||
<p className="mt-3">
|
||||
Contact us today to learn how our services can help you achieve your goals.
|
||||
</p>
|
||||
<div className="mt-6 flex flex-col sm:flex-row gap-3 justify-center">
|
||||
<a href="/contact" className="px-5 py-3 border rounded-md">Schedule Free Consultation</a>
|
||||
<a href="tel:+13618887711" className="px-5 py-3 border rounded-md">Call (361) 888-7711</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user