Switch to version 1: modified src/app/page.tsx

This commit is contained in:
2026-03-25 20:20:45 +00:00
parent 8d831f9165
commit f884d08423

View File

@@ -34,13 +34,13 @@ export default function LandingPage() {
{
name: "Home", id: "/"},
{
name: "About", id: "#metrics"},
name: "About", id: "/about"},
{
name: "Services", id: "#services"},
name: "Services", id: "/services"},
{
name: "Case Studies", id: "#case-studies"},
name: "Case Studies", id: "/case-studies"},
{
name: "Contact", id: "#contact-cta"},
name: "Contact", id: "/contact"},
]}
brandName="VJ Digital Adage"
/>
@@ -196,11 +196,10 @@ export default function LandingPage() {
variant: "sparkles-gradient"}}
tag="Ready to Grow?"
title="Unlock Your Growth Potential"
description="Book a free consultation or connect via WhatsApp at +91 XXXXXXXXXX to discuss your growth strategy. Enter your email for a free marketing audit."
description="Enter your email for a free marketing audit and start generating more leads today."
inputPlaceholder="Enter your business email"
buttonText="Book Free Consultation"
termsText="By clicking Book Free Consultation you're confirming that you agree with our Terms and Conditions."
className="lg:flex-row flex-col"
buttonText="Get Free Marketing Audit"
termsText="By clicking Get Free Marketing Audit you're confirming that you agree with our Terms and Conditions."
/>
</div>
@@ -210,25 +209,25 @@ export default function LandingPage() {
{
title: "Company", items: [
{
label: "About Us", href: "#metrics"},
label: "About Us", href: "/about"},
{
label: "Case Studies", href: "#case-studies"},
label: "Case Studies", href: "/case-studies"},
{
label: "Contact", href: "#contact-cta"},
label: "Contact", href: "/contact"},
],
},
{
title: "Services", items: [
{
label: "Performance Marketing", href: "#services"},
label: "Performance Marketing", href: "/services#performance"},
{
label: "Social Media Marketing", href: "#services"},
label: "Social Media Marketing", href: "/services#social-media"},
{
label: "SEO", href: "#services"},
label: "SEO", href: "/services#seo"},
{
label: "Website Development", href: "#services"},
label: "Website Development", href: "/services#web-dev"},
{
label: "Branding", href: "#services"},
label: "Branding", href: "/services#branding"},
],
},
{
@@ -246,4 +245,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}