Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 83528bf281 | |||
| d68854b871 | |||
| 8bbe120566 | |||
| f037cfa518 | |||
| 2306171bb8 | |||
| 9184a787b4 | |||
| 370f4b7d6b | |||
| 063744acac | |||
| d9f04317a7 | |||
| c7925f791c | |||
| 63fa4cce0c | |||
| f884d08423 | |||
| 8d831f9165 | |||
| 6f514e88b8 | |||
| 4c77a64814 | |||
| 87a642c991 | |||
| c93986fa7c | |||
| 0218d1fc53 | |||
| c61cdf377b |
@@ -75,13 +75,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: 1, title: "Data-Driven Decisions", description: "Leveraging analytics to optimize campaigns and ensure maximum ROI.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-sleek-modern-digital-marketing-dashboa-1774469379436-cb6598f6.png", imageAlt: "Data analytics dashboard"
|
||||
id: 1, title: "Data-Driven Decisions", description: "Leveraging analytics to optimize campaigns and ensure maximum ROI.", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-sleek-modern-digital-marketing-dashboa-1774469379436-cb6598f6.png?_wi=1", imageAlt: "Data analytics dashboard" }, phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-sleek-modern-digital-marketing-dashboa-1774469379436-cb6598f6.png?_wi=2", imageAlt: "Data analytics dashboard" }
|
||||
},
|
||||
{
|
||||
id: 2, title: "Innovative Strategies", description: "Crafting bespoke marketing plans that stand out and deliver.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-google-logo-in-elec-1774469377730-fd9ec38a.png", imageAlt: "Abstract strategy illustration"
|
||||
id: 2, title: "Innovative Strategies", description: "Crafting bespoke marketing plans that stand out and deliver.", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-google-logo-in-elec-1774469377730-fd9ec38a.png?_wi=1", imageAlt: "Abstract strategy illustration" }, phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-google-logo-in-elec-1774469377730-fd9ec38a.png?_wi=2", imageAlt: "Abstract strategy illustration" }
|
||||
},
|
||||
{
|
||||
id: 3, title: "Transparent Reporting", description: "Providing clear, actionable insights into campaign performance.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-meta-logo-facebook--1774469378393-650b9ae4.png", imageAlt: "Report graph"
|
||||
id: 3, title: "Transparent Reporting", description: "Providing clear, actionable insights into campaign performance.", phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-meta-logo-facebook--1774469378393-650b9ae4.png?_wi=1", imageAlt: "Report graph" }, phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-meta-logo-facebook--1774469378393-650b9ae4.png?_wi=2", imageAlt: "Report graph" }
|
||||
}
|
||||
]}
|
||||
title="Our Approach to Success"
|
||||
|
||||
@@ -3,14 +3,14 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import AboutMetric from '@/components/sections/about/AboutMetric';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import { Award, DollarSign, Users } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -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"
|
||||
/>
|
||||
@@ -50,7 +50,7 @@ export default function LandingPage() {
|
||||
<HeroLogoBillboard
|
||||
background={{
|
||||
variant: "sparkles-gradient"}}
|
||||
logoText="VJ Digital Adage"
|
||||
logoText=""
|
||||
description="We Don’t Just Market. We Generate Revenue. Helping brands scale with performance marketing, branding & AI-powered strategies."
|
||||
buttons={[
|
||||
{
|
||||
@@ -58,8 +58,8 @@ export default function LandingPage() {
|
||||
{
|
||||
text: "📞 Call Now", href: "tel:+91XXXXXXXXXX"},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-sleek-modern-digital-marketing-dashboa-1774469379436-cb6598f6.png"
|
||||
imageAlt="Modern digital marketing dashboard with performance metrics and glowing accents"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/uploaded-1774470454772-r0lm4i6x.png"
|
||||
imageAlt="VJ Digital Adage logo"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
@@ -147,7 +147,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="case-studies" data-section="case-studies">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
animationType="none"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
@@ -165,24 +165,19 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
animationType="blur-reveal"
|
||||
<TestimonialCardFive
|
||||
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Priya Sharma", role: "CEO", company: "GrowthX Solutions", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/professional-headshot-of-a-smiling-femal-1774469378068-6c17693a.png", imageAlt: "Priya Sharma, CEO of GrowthX Solutions"},
|
||||
id: "1", name: "Priya Sharma", date: "May 15, 2024", title: "Skyrocketing our ROI", quote: "VJ Digital Adage transformed our marketing efforts, achieving a 5x ROI and significantly boosting our online presence. Their data-driven approach is truly exceptional!", tag: "CEO, GrowthX Solutions", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/professional-headshot-of-a-smiling-femal-1774469378068-6c17693a.png", avatarAlt: "Priya Sharma, CEO of GrowthX Solutions"},
|
||||
{
|
||||
id: "2", name: "Rajesh Kumar", role: "Founder", company: "InnovateHub", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/professional-headshot-of-a-confident-mal-1774469378313-9d9476f0.png", imageAlt: "Rajesh Kumar, Founder of InnovateHub"},
|
||||
id: "2", name: "Rajesh Kumar", date: "April 22, 2024", title: "Unmatched Lead Generation", quote: "InnovateHub saw a massive increase in qualified leads thanks to VJ Digital Adage. Their strategies are innovative and delivered results far beyond our expectations.", tag: "Founder, InnovateHub", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/professional-headshot-of-a-confident-mal-1774469378313-9d9476f0.png", avatarAlt: "Rajesh Kumar, Founder of InnovateHub"},
|
||||
{
|
||||
id: "3", name: "Sneha Patel", role: "Marketing Director", company: "BrandForge", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/professional-headshot-of-a-discerning-fe-1774469378201-3a9cedd6.png", imageAlt: "Sneha Patel, Marketing Director of BrandForge"},
|
||||
id: "3", name: "Sneha Patel", date: "March 10, 2024", title: "Exceptional Brand Growth", quote: "Our brand recognition and engagement have never been higher. VJ Digital Adage crafted a compelling brand strategy that truly resonated with our target audience.", tag: "Marketing Director, BrandForge", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/professional-headshot-of-a-discerning-fe-1774469378201-3a9cedd6.png", avatarAlt: "Sneha Patel, Marketing Director of BrandForge"},
|
||||
{
|
||||
id: "4", name: "Amit Singh", role: "Business Owner", company: "Local Pros", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/professional-headshot-of-a-successful-ma-1774469378528-aafc79f4.png", imageAlt: "Amit Singh, Business Owner of Local Pros"},
|
||||
id: "4", name: "Amit Singh", date: "February 18, 2024", title: "Local Domination Achieved", quote: "Thanks to VJ Digital Adage, our local business now dominates search results and attracts more customers than ever before. Highly recommend their SEO expertise!", tag: "Business Owner, Local Pros", avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/professional-headshot-of-a-successful-ma-1774469378528-aafc79f4.png", avatarAlt: "Amit Singh, Business Owner of Local Pros"},
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Hear from satisfied business owners who've scaled with VJ Digital Adage."
|
||||
@@ -190,17 +185,18 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact-cta" data-section="contact-cta">
|
||||
<ContactCenter
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
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."
|
||||
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"
|
||||
text="Ready to Grow? Unlock Your Growth Potential. Get in touch with our experts to discuss your business needs and marketing goals."
|
||||
buttons={[
|
||||
{
|
||||
text: "🚀 Book Free Consultation", href: "/contact"},
|
||||
{
|
||||
text: "💬 WhatsApp Us", href: "https://wa.me/+919876543210"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -210,25 +206,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"},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
@@ -8,7 +8,7 @@ import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwent
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import { FileText, Key, Laptop, LineChart, MessageCircle } from "lucide-react";
|
||||
import { CalendarDays, FileText, Key, Laptop, LineChart, MessageCircle } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -29,30 +29,15 @@ export default function LandingPage() {
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "home",
|
||||
href: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
href: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "services",
|
||||
href: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "Case Studies",
|
||||
id: "case-studies",
|
||||
href: "/case-studies",
|
||||
},
|
||||
name: "Case Studies", id: "/case-studies"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
href: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="VJ Digital Adage"
|
||||
/>
|
||||
@@ -66,29 +51,17 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Targeted Lead Generation",
|
||||
description: "Attract high-quality leads with precision targeting and optimized campaigns across various platforms.",
|
||||
phoneOne: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-smartphone-mockup-displaying-a-perform-1774469378697-699b58b6.png?_wi=2",
|
||||
imageAlt: "Smartphone showing performance marketing ad campaign interface",
|
||||
},
|
||||
title: "Targeted Lead Generation", description: "Attract high-quality leads with precision targeting and optimized campaigns across various platforms.", phoneOne: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-smartphone-mockup-displaying-a-perform-1774469378697-699b58b6.png?_wi=2", imageAlt: "Smartphone showing performance marketing ad campaign interface"},
|
||||
phoneTwo: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-second-smartphone-mockup-showcasing-de-1774469378939-f16c0602.png?_wi=2",
|
||||
imageAlt: "Smartphone displaying detailed analytics for a performance marketing campaign",
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-second-smartphone-mockup-showcasing-de-1774469378939-f16c0602.png?_wi=2", imageAlt: "Smartphone displaying detailed analytics for a performance marketing campaign"},
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Conversion Rate Optimization",
|
||||
description: "Boost your conversion rates through continuous A/B testing, landing page optimization, and user experience enhancements.",
|
||||
phoneOne: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-smartphone-mockup-showing-a-modern-web-1774469378418-ff861449.png?_wi=2",
|
||||
imageAlt: "Smartphone showing website wireframe with focus on conversion elements",
|
||||
},
|
||||
title: "Conversion Rate Optimization", description: "Boost your conversion rates through continuous A/B testing, landing page optimization, and user experience enhancements.", phoneOne: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-smartphone-mockup-showing-a-modern-web-1774469378418-ff861449.png?_wi=2", imageAlt: "Smartphone showing website wireframe with focus on conversion elements"},
|
||||
phoneTwo: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-second-smartphone-mockup-displaying-a--1774469379075-6045c14e.png?_wi=2",
|
||||
imageAlt: "Smartphone displaying a live preview of a high-converting website",
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-second-smartphone-mockup-displaying-a--1774469379075-6045c14e.png?_wi=2", imageAlt: "Smartphone displaying a live preview of a high-converting website"},
|
||||
},
|
||||
]}
|
||||
showStepNumbers={true}
|
||||
@@ -105,50 +78,34 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Social Media Domination",
|
||||
description: "Build a strong brand presence and engage with your audience effectively across all major social platforms.",
|
||||
media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-smartphone-mockup-featuring-a-social-m-1774469378723-2611c5fd.png?_wi=2",
|
||||
imageAlt: "Smartphone showing social media content calendar",
|
||||
},
|
||||
id: "1", title: "Social Media Domination", description: "Build a strong brand presence and engage with your audience effectively across all major social platforms.", media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-smartphone-mockup-featuring-a-social-m-1774469378723-2611c5fd.png?_wi=2", imageAlt: "Smartphone showing social media content calendar"},
|
||||
items: [
|
||||
{
|
||||
icon: MessageCircle,
|
||||
text: "Content Strategy & Creation",
|
||||
},
|
||||
text: "Content Strategy & Creation"},
|
||||
{
|
||||
icon: CalendarDays,
|
||||
text: "Audience Engagement",
|
||||
},
|
||||
text: "Audience Engagement"},
|
||||
{
|
||||
icon: LineChart,
|
||||
text: "Paid Social Campaigns",
|
||||
},
|
||||
text: "Paid Social Campaigns"},
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Search Engine Optimization (SEO)",
|
||||
description: "Achieve higher rankings and drive organic traffic with our comprehensive SEO strategies, including technical and content optimization.",
|
||||
media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-smartphone-mockup-showing-an-seo-keywo-1774469378756-a06aa704.png?_wi=2",
|
||||
imageAlt: "Smartphone showing SEO keyword research tool",
|
||||
},
|
||||
id: "2", title: "Search Engine Optimization (SEO)", description: "Achieve higher rankings and drive organic traffic with our comprehensive SEO strategies, including technical and content optimization.", media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-smartphone-mockup-showing-an-seo-keywo-1774469378756-a06aa704.png?_wi=2", imageAlt: "Smartphone showing SEO keyword research tool"},
|
||||
items: [
|
||||
{
|
||||
icon: Key,
|
||||
text: "Keyword Research",
|
||||
},
|
||||
text: "Keyword Research"},
|
||||
{
|
||||
icon: FileText,
|
||||
text: "Content Optimization",
|
||||
},
|
||||
text: "Content Optimization"},
|
||||
{
|
||||
icon: Laptop,
|
||||
text: "Technical SEO Audits",
|
||||
},
|
||||
text: "Technical SEO Audits"},
|
||||
],
|
||||
reverse: true,
|
||||
},
|
||||
@@ -167,26 +124,15 @@ export default function LandingPage() {
|
||||
tag="Foundational Services"
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Solutions",
|
||||
href: "/services",
|
||||
},
|
||||
text: "Explore Solutions", href: "/services"},
|
||||
]}
|
||||
accordionItems={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Custom Website Development",
|
||||
content: "From sleek landing pages to complex e-commerce platforms, we build responsive, fast, and user-friendly websites tailored to your business goals. We focus on modern design principles and robust functionality to ensure your online presence is impactful and effective.",
|
||||
},
|
||||
id: "1", title: "Custom Website Development", content: "From sleek landing pages to complex e-commerce platforms, we build responsive, fast, and user-friendly websites tailored to your business goals. We focus on modern design principles and robust functionality to ensure your online presence is impactful and effective."},
|
||||
{
|
||||
id: "2",
|
||||
title: "Comprehensive Branding Solutions",
|
||||
content: "Develop a memorable brand identity that resonates with your target audience. Our services include logo design, brand guidelines, messaging, and visual assets to ensure a cohesive and strong brand image across all channels.",
|
||||
},
|
||||
id: "2", title: "Comprehensive Branding Solutions", content: "Develop a memorable brand identity that resonates with your target audience. Our services include logo design, brand guidelines, messaging, and visual assets to ensure a cohesive and strong brand image across all channels."},
|
||||
{
|
||||
id: "3",
|
||||
title: "E-commerce Optimization",
|
||||
content: "Maximize your online sales with our specialized e-commerce solutions. We optimize product listings, streamline checkout processes, and integrate powerful tools to enhance the shopping experience and drive conversions.",
|
||||
},
|
||||
id: "3", title: "E-commerce Optimization", content: "Maximize your online sales with our specialized e-commerce solutions. We optimize product listings, streamline checkout processes, and integrate powerful tools to enhance the shopping experience and drive conversions."},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-smartphone-mockup-showing-a-brand-iden-1774469380620-5394ecfe.png?_wi=2"
|
||||
imageAlt="Smartphone mockup showing a brand identity design interface with glowing neon accents."
|
||||
@@ -200,14 +146,8 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
logos={[
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-google-logo-in-elec-1774469377730-fd9ec38a.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-meta-logo-facebook--1774469378393-650b9ae4.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-shopify-logo-in-ele-1774469377685-a78e50e4.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-hubspot-logo-in-ele-1774469377595-aae3c456.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-mailchimp-logo-in-e-1774469378332-2acc1bd5.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-stripe-logo-in-elec-1774469377548-d946c42d.png",
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-semrush-logo-in-ele-1774469377608-5f64386c.png",
|
||||
]}
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-google-logo-in-elec-1774469377730-fd9ec38a.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-meta-logo-facebook--1774469378393-650b9ae4.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-shopify-logo-in-ele-1774469377685-a78e50e4.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-hubspot-logo-in-ele-1774469377595-aae3c456.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-mailchimp-logo-in-e-1774469378332-2acc1bd5.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-stripe-logo-in-elec-1774469377548-d946c42d.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BS4YGWLrlA55PnpRRcRYQbD68Y/a-minimalist-glowing-semrush-logo-in-ele-1774469377608-5f64386c.png"]}
|
||||
names={[]}
|
||||
title="Trusted by Industry Leaders"
|
||||
description="Our expertise has helped businesses of all sizes achieve their digital marketing objectives."
|
||||
tag="Our Partners"
|
||||
@@ -220,58 +160,35 @@ export default function LandingPage() {
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Services",
|
||||
items: [
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Performance Marketing",
|
||||
href: "/services#performance-marketing",
|
||||
},
|
||||
label: "Performance Marketing", href: "/services#performance-marketing"},
|
||||
{
|
||||
label: "Social Media Marketing",
|
||||
href: "/services#social-media-marketing",
|
||||
},
|
||||
label: "Social Media Marketing", href: "/services#social-media-marketing"},
|
||||
{
|
||||
label: "SEO & Content",
|
||||
href: "/services#seo-content",
|
||||
},
|
||||
label: "SEO & Content", href: "/services#seo-content"},
|
||||
{
|
||||
label: "Website Development",
|
||||
href: "/services#website-development",
|
||||
},
|
||||
label: "Website Development", href: "/services#website-development"},
|
||||
{
|
||||
label: "Branding & Strategy",
|
||||
href: "/services#branding-strategy",
|
||||
},
|
||||
label: "Branding & Strategy", href: "/services#branding-strategy"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Case Studies",
|
||||
href: "/case-studies",
|
||||
},
|
||||
label: "Case Studies", href: "/case-studies"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Blog",
|
||||
href: "/blog",
|
||||
},
|
||||
label: "Blog", href: "/blog"},
|
||||
{
|
||||
label: "FAQs",
|
||||
href: "/contact#faqs",
|
||||
},
|
||||
label: "FAQs", href: "/contact#faqs"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user