Merge version_2 into main #2

Merged
bender merged 1 commits from version_2 into main 2026-06-11 15:29:49 +00:00

View File

@@ -15,6 +15,11 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
export default function LandingPage() {
const handlePlaceholderClick = (label: string) => {
console.log(`${label} button clicked. Functionality to be implemented.`);
alert(`${label} feature is coming soon!`); // User-facing feedback
};
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -232,7 +237,7 @@ export default function LandingPage() {
text="Ready to transform your property? Contact us today for a consultation!"
buttons={[
{
text: "Get a Free Estimate", href: "#"},
text: "Get a Free Estimate", href: "mailto:info@axelconstruction.com"},
{
text: "Call Us: (555) 123-4567", href: "tel:+15551234567"},
]}
@@ -269,9 +274,9 @@ export default function LandingPage() {
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
label: "Privacy Policy", onClick: () => handlePlaceholderClick("Privacy Policy")},
{
label: "Terms of Service", href: "#"},
label: "Terms of Service", onClick: () => handlePlaceholderClick("Terms of Service")},
],
},
]}