diff --git a/src/app/page.tsx b/src/app/page.tsx index cfb4ef8..c3cbbc8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -87,26 +87,50 @@ export default function LandingPage() { { id: "cleanup", label: "Cleanup", title: "Property Cleanup & Debris Removal", items: [ "Fast and efficient debris removal", "Property site clearing", "Yard cleanup and organization"], + buttons: [ + { text: "Get Quote", href: "#contact" }, + { text: "Learn More", onClick: () => console.log("Learn more: cleanup") }, + ], }, { id: "weed-cutting", label: "Weed Cutting", title: "Tall Weed Cutting & Overgrowth Removal", items: [ "Heavy-duty weed removal", "Overgrowth management", "Site preparation"], + buttons: [ + { text: "Get Quote", href: "#contact" }, + { text: "Learn More", onClick: () => console.log("Learn more: weed-cutting") }, + ], }, { id: "tree-service", label: "Tree Service", title: "Tree Trimming & Maintenance", items: [ "Professional tree trimming", "Branch removal and pruning", "Health and safety assessments"], + buttons: [ + { text: "Get Quote", href: "#contact" }, + { text: "Learn More", onClick: () => console.log("Learn more: tree-service") }, + ], }, { id: "acreage", label: "Acreage", title: "Acreage Maintenance", items: [ "Large property management", "Seasonal maintenance", "Custom care plans"], + buttons: [ + { text: "Get Quote", href: "#contact" }, + { text: "Learn More", onClick: () => console.log("Learn more: acreage") }, + ], }, { id: "weed-prevention", label: "Prevention", title: "Weed Prevention Treatment", items: [ "Preventative spray treatments", "Long-term weed control", "Environmentally responsible solutions"], + buttons: [ + { text: "Get Quote", href: "#contact" }, + { text: "Learn More", onClick: () => console.log("Learn more: weed-prevention") }, + ], }, { id: "revitalization", label: "Revitalization", title: "Full Property Revitalization", items: [ "Complete property transformations", "Landscaping design consultation", "Ongoing lawn care services"], + buttons: [ + { text: "Get Quote", href: "#contact" }, + { text: "Learn More", onClick: () => console.log("Learn more: revitalization") }, + ], }, ]} animationType="slide-up"