This commit is contained in:
2025-09-11 10:19:16 +02:00
parent 44ab7d09fd
commit c69735df81
23 changed files with 1806 additions and 67 deletions

View File

@@ -1,4 +1,4 @@
import { ArrowRight, Calculator, FileText, Users, Shield, Building } from "lucide-react";
import { ArrowRight, Calculator, FileText, Users, Shield, Building, Heart, TrendingUp, PiggyBank, Scale, Briefcase } from "lucide-react";
import { Card, CardContent } from "@/components/ui/card";
const Services = () => {
@@ -7,36 +7,71 @@ const Services = () => {
icon: FileText,
title: "Tax Preparation & Planning",
description: "Maximize deductions with proactive quarterly planning and audit-ready documentation.",
image: "/lovable-uploads/741d6934-b230-43fb-9aac-a2699bba0915.png",
alt: "Abstract illustration of IRS documents and magnifier"
image: "/lovable-uploads/Screenshot 2025-09-10 183339.png",
alt: "TAX illustration with geometric patterns"
},
{
icon: Calculator,
title: "Accounting & Bookkeeping",
description: "Monthly books, financial statements, and cash-flow management for clear business insights.",
image: "/lovable-uploads/1260e5db-df42-4f32-89c2-eecc054d669d.png",
alt: "Abstract financial charts and calculator"
image: "/lovable-uploads/Screenshot 2025-09-10 183757.png",
alt: "Financial documents and accounting illustration"
},
{
icon: Users,
title: "Payroll Solutions",
description: "Full compliance, filings, and benefits coordination to keep your team paid accurately.",
image: null,
alt: null
image: "/lovable-uploads/Screenshot 2025-09-10 183224.png",
alt: "Balance scale with payroll and employee elements"
},
{
icon: Shield,
title: "IRS Representation",
description: "Expert audit defense, penalty negotiations, and payment plan arrangements.",
image: "/lovable-uploads/741d6934-b230-43fb-9aac-a2699bba0915.png",
alt: "Abstract illustration of IRS documents and magnifier"
alt: "IRS documents with magnifying glass illustration"
},
{
icon: Building,
title: "Business Consulting & Formation",
description: "Entity selection, business valuation partners, and operating agreement guidance.",
image: null,
alt: null
image: "/lovable-uploads/bea5e6b1-7510-4876-955e-a265f2600ec5.png",
alt: "Business essentials with smartphone and notebook"
},
{
icon: Heart,
title: "Estate Planning",
description: "Comprehensive estate planning to facilitate orderly transfer of assets and reduce tax burden.",
image: "/lovable-uploads/Screenshot 2025-09-10 183339.png",
alt: "Estate planning illustration"
},
{
icon: TrendingUp,
title: "Financial Planning",
description: "Structured financial plans to help you face any financial challenge at each stage of life.",
image: "/lovable-uploads/Screenshot 2025-09-10 183757.png",
alt: "Financial planning illustration"
},
{
icon: PiggyBank,
title: "Retirement Planning",
description: "Successful implementation and periodic review to ensure financial independence through retirement.",
image: "/lovable-uploads/Screenshot 2025-09-10 183224.png",
alt: "Retirement planning illustration"
},
{
icon: Scale,
title: "Estate & Trust Tax Preparation",
description: "Specialized tax preparation for estates and trusts with expert guidance on complex tax matters.",
image: "/lovable-uploads/741d6934-b230-43fb-9aac-a2699bba0915.png",
alt: "Estate and trust tax illustration"
},
{
icon: Briefcase,
title: "Sales Tax Services",
description: "Assistance with sales tax collection, compilation, and preparation of returns across multiple jurisdictions.",
image: "/lovable-uploads/bea5e6b1-7510-4876-955e-a265f2600ec5.png",
alt: "Sales tax services illustration"
}
];
@@ -52,7 +87,7 @@ const Services = () => {
</p>
</div>
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div className="grid md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8">
{services.map((service, index) => {
const Icon = service.icon;
return (