Update src/app/page.tsx

This commit is contained in:
2026-05-09 04:35:47 +00:00
parent d69848dc55
commit fceb176c45

View File

@@ -207,6 +207,9 @@ export default function LandingPage() {
showRating={true}
title="Client Success Stories"
description="What our premium partners say."
buttons={[
{ text: "View All", onClick: () => console.log("View all clicked") }
]}
/>
</div>
@@ -261,6 +264,7 @@ export default function LandingPage() {
description="Reach out today and transform your business."
imageSrc="http://img.b2bpic.net/free-photo/top-view-telephone-receivers-with-chat-bubbles_23-2148795997.jpg"
mediaAnimation="slide-up"
onSubmit={(email) => console.log("Form submitted with:", email)}
/>
</div>
@@ -284,9 +288,9 @@ export default function LandingPage() {
{
label: "About", href: "#about"},
{
label: "Phone: 7289971983"},
label: "Phone: 7289971983", onClick: () => window.location.href = "tel:7289971983"},
{
label: "Email: smartsiteindia11@gmail.com"},
label: "Email: smartsiteindia11@gmail.com", onClick: () => window.location.href = "mailto:smartsiteindia11@gmail.com"},
],
},
]}