Merge version_1 into main #3
361
src/app/page.tsx
361
src/app/page.tsx
@@ -1,29 +1,39 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonial';
|
||||
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import { Zap, Target, BookOpen, Users, CheckCircle, Globe, TrendingUp, Handshake, Star, Lightbulb } from 'lucide-react';
|
||||
import Link from "next/link";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import HeroSplitTestimonial from "@/components/sections/hero/HeroSplitTestimonial";
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
|
||||
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import {
|
||||
Zap,
|
||||
Target,
|
||||
BookOpen,
|
||||
Globe,
|
||||
Users,
|
||||
CheckCircle,
|
||||
TrendingUp,
|
||||
Star,
|
||||
Handshake,
|
||||
} from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Industries", id: "industries" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Solutions",
|
||||
items: [
|
||||
title: "Solutions", items: [
|
||||
{ label: "Digital Marketing", href: "/services" },
|
||||
{ label: "IT Infrastructure", href: "/services" },
|
||||
{ label: "Project Management", href: "/services" },
|
||||
@@ -31,8 +41,7 @@ export default function HomePage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Industries", href: "/industries" },
|
||||
{ label: "Case Studies", href: "#" },
|
||||
@@ -40,8 +49,7 @@ export default function HomePage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Cookie Policy", href: "#" },
|
||||
@@ -52,25 +60,23 @@ export default function HomePage() {
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="soft"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="large"
|
||||
background="none"
|
||||
cardStyle="layered-gradient"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="semibold"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="IIDR Tech"
|
||||
navItems={navItems}
|
||||
button={{
|
||||
text: "Request Consultation",
|
||||
href: "/contact",
|
||||
}}
|
||||
text: "Request Consultation", href: "contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -82,46 +88,32 @@ export default function HomePage() {
|
||||
tag="Enterprise Solutions"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="blur-reveal"
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/modern-it-consulting-office-environment--1772921590042-7298f3f1.png?_wi=1"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/modern-it-consulting-office-environment--1772921590042-7298f3f1.png"
|
||||
imageAlt="IIDR Tech Solutions - Modern IT Consulting"
|
||||
imagePosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
text: "Request Consultation",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "Learn More",
|
||||
href: "services",
|
||||
},
|
||||
{ text: "Request Consultation", href: "contact" },
|
||||
{ text: "Learn More", href: "services" },
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
testimonials={[
|
||||
{
|
||||
name: "Rajesh Kumar",
|
||||
handle: "CEO, Manufacturing Corp",
|
||||
testimonial: "IIDR Tech transformed our ERP implementation in record time with minimal disruption. Exceptional expertise!",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-confident-bus-1772921587891-f25070ea.png?_wi=1",
|
||||
},
|
||||
name: "Rajesh Kumar", handle: "CEO, Manufacturing Corp", testimonial:
|
||||
"IIDR Tech transformed our ERP implementation in record time with minimal disruption. Exceptional expertise!", rating: 5,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-confident-bus-1772921587891-f25070ea.png"},
|
||||
{
|
||||
name: "Priya Sharma",
|
||||
handle: "CTO, Logistics Solutions",
|
||||
testimonial: "Their IT infrastructure expertise streamlined our cloud migration. Highly professional team.",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-diverse-busin-1772921588358-beeca5a8.png?_wi=1",
|
||||
},
|
||||
name: "Priya Sharma", handle: "CTO, Logistics Solutions", testimonial:
|
||||
"Their IT infrastructure expertise streamlined our cloud migration. Highly professional team.", rating: 5,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-diverse-busin-1772921588358-beeca5a8.png"},
|
||||
{
|
||||
name: "Amit Patel",
|
||||
handle: "Director, Retail Group",
|
||||
testimonial: "Digital marketing strategy from IIDR Tech increased our online presence by 300%. Outstanding results!",
|
||||
rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-business-prof-1772921589249-14f4f6b7.png?_wi=1",
|
||||
},
|
||||
name: "Amit Patel", handle: "Director, Retail Group", testimonial:
|
||||
"Digital marketing strategy from IIDR Tech increased our online presence by 300%. Outstanding results!", rating: 5,
|
||||
imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-business-prof-1772921589249-14f4f6b7.png"},
|
||||
]}
|
||||
testimonialRotationInterval={5000}
|
||||
useInvertedBackground={false}
|
||||
@@ -141,29 +133,21 @@ export default function HomePage() {
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Digital Marketing",
|
||||
description: "SEO optimization, social media marketing, online advertising, and website promotion strategies to boost your online presence.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/digital-marketing-analytics-dashboard-sh-1772921588252-a21c4902.png?_wi=1",
|
||||
imageAlt: "Digital Marketing Services",
|
||||
},
|
||||
title: "Digital Marketing", description:
|
||||
"SEO optimization, social media marketing, online advertising, and website promotion strategies to boost your online presence.", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/digital-marketing-analytics-dashboard-sh-1772921588252-a21c4902.png", imageAlt: "Digital Marketing Services"},
|
||||
{
|
||||
title: "IT & Infrastructure",
|
||||
description: "Cloud infrastructure setup, server management, network security, and comprehensive IT consulting for enterprise scalability.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/cloud-infrastructure-and-network-securit-1772921589008-63a5f9b6.png?_wi=1",
|
||||
imageAlt: "IT Infrastructure Solutions",
|
||||
},
|
||||
title: "IT & Infrastructure", description:
|
||||
"Cloud infrastructure setup, server management, network security, and comprehensive IT consulting for enterprise scalability.", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/cloud-infrastructure-and-network-securit-1772921589008-63a5f9b6.png", imageAlt: "IT Infrastructure Solutions"},
|
||||
{
|
||||
title: "Project Management",
|
||||
description: "IT project planning, agile and waterfall delivery, business process improvement, and expert implementation management.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/project-management-timeline-and-workflow-1772921589485-e1c2ee0f.png?_wi=1",
|
||||
imageAlt: "Project Management Services",
|
||||
},
|
||||
title: "Project Management", description:
|
||||
"IT project planning, agile and waterfall delivery, business process improvement, and expert implementation management.", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/project-management-timeline-and-workflow-1772921589485-e1c2ee0f.png", imageAlt: "Project Management Services"},
|
||||
{
|
||||
title: "ERP Implementation",
|
||||
description: "Specialized IFS ERP implementation, finance setup, supply chain configuration, data migration, and ongoing user training.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/ifs-erp-system-interface-showing-modules-1772921589063-68e9e2ea.png?_wi=1",
|
||||
imageAlt: "ERP Implementation Services",
|
||||
},
|
||||
title: "ERP Implementation", description:
|
||||
"Specialized IFS ERP implementation, finance setup, supply chain configuration, data migration, and ongoing user training.", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/ifs-erp-system-interface-showing-modules-1772921589063-68e9e2ea.png", imageAlt: "ERP Implementation Services"},
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
/>
|
||||
@@ -179,37 +163,28 @@ export default function HomePage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imagePosition="right"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-consulting-team-in-modern-o-1772921588658-7fed3831.png?_wi=1"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-consulting-team-in-modern-o-1772921588658-7fed3831.png"
|
||||
imageAlt="IIDR Tech Solutions Team"
|
||||
mediaAnimation="blur-reveal"
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Global ERP Expertise",
|
||||
description: "15+ years of specialized experience in enterprise resource planning with proven success across diverse industries.",
|
||||
icon: Globe,
|
||||
title: "Global ERP Expertise", description:
|
||||
"15+ years of specialized experience in enterprise resource planning with proven success across diverse industries.", icon: Globe,
|
||||
},
|
||||
{
|
||||
title: "Experienced Consultants",
|
||||
description: "Team of seasoned IT professionals with deep domain knowledge and certification in leading technologies.",
|
||||
icon: Users,
|
||||
title: "Experienced Consultants", description:
|
||||
"Team of seasoned IT professionals with deep domain knowledge and certification in leading technologies.", icon: Users,
|
||||
},
|
||||
{
|
||||
title: "Digital Transformation Leaders",
|
||||
description: "Helping businesses evolve and thrive in the digital age through innovative solutions and strategic implementation.",
|
||||
icon: Zap,
|
||||
title: "Digital Transformation Leaders", description:
|
||||
"Helping businesses evolve and thrive in the digital age through innovative solutions and strategic implementation.", icon: Zap,
|
||||
},
|
||||
{
|
||||
title: "Proven Methodology",
|
||||
description: "Systematic approach to project delivery ensuring on-time, on-budget implementations with minimal business disruption.",
|
||||
icon: CheckCircle,
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Start Your Journey",
|
||||
href: "/contact",
|
||||
title: "Proven Methodology", description:
|
||||
"Systematic approach to project delivery ensuring on-time, on-budget implementations with minimal business disruption.", icon: CheckCircle,
|
||||
},
|
||||
]}
|
||||
buttons={[{ text: "Start Your Journey", href: "contact" }]}
|
||||
buttonAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
@@ -226,48 +201,20 @@ export default function HomePage() {
|
||||
animationType="scale-rotate"
|
||||
metrics={[
|
||||
{
|
||||
id: "1",
|
||||
value: "15+",
|
||||
title: "Years of IT Consulting Excellence",
|
||||
items: [
|
||||
"8+ Industries Served Successfully",
|
||||
"50+ Countries with Global Clients",
|
||||
"Award-Winning Consulting Team",
|
||||
"ISO Certified Operations",
|
||||
],
|
||||
id: "1", value: "15+", title: "Years of IT Consulting Excellence", items: [
|
||||
"8+ Industries Served Successfully", "50+ Countries with Global Clients", "Award-Winning Consulting Team", "ISO Certified Operations"],
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "500+",
|
||||
title: "Successful Project Implementations",
|
||||
items: [
|
||||
"98% Client Satisfaction Rate",
|
||||
"Zero Data Loss Migration Record",
|
||||
"Average 25% Cost Reduction",
|
||||
"On-Time Delivery Excellence",
|
||||
],
|
||||
id: "2", value: "500+", title: "Successful Project Implementations", items: [
|
||||
"98% Client Satisfaction Rate", "Zero Data Loss Migration Record", "Average 25% Cost Reduction", "On-Time Delivery Excellence"],
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "200+",
|
||||
title: "Enterprise Clients Served",
|
||||
items: [
|
||||
"Manufacturing & Retail Leaders",
|
||||
"Financial Services & Logistics",
|
||||
"Technology & Innovation Pioneers",
|
||||
"Trusted by Fortune 500 Companies",
|
||||
],
|
||||
id: "3", value: "200+", title: "Enterprise Clients Served", items: [
|
||||
"Manufacturing & Retail Leaders", "Financial Services & Logistics", "Technology & Innovation Pioneers", "Trusted by Fortune 500 Companies"],
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "99.9%",
|
||||
title: "System Uptime & Reliability",
|
||||
items: [
|
||||
"24/7 Support & Monitoring",
|
||||
"Proactive Issue Resolution",
|
||||
"Dedicated Support Teams",
|
||||
"SLA-Based Guarantees",
|
||||
],
|
||||
id: "4", value: "99.9%", title: "System Uptime & Reliability", items: [
|
||||
"24/7 Support & Monitoring", "Proactive Issue Resolution", "Dedicated Support Teams", "SLA-Based Guarantees"],
|
||||
},
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
@@ -276,43 +223,31 @@ export default function HomePage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwelve
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Rajesh Kumar", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-confident-bus-1772921587891-f25070ea.png"},
|
||||
{
|
||||
id: "2", name: "Priya Sharma", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-diverse-busin-1772921588358-beeca5a8.png"},
|
||||
{
|
||||
id: "3", name: "Amit Patel", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-business-prof-1772921589249-14f4f6b7.png"},
|
||||
{
|
||||
id: "4", name: "Neha Singh", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-diverse-busin-1772921587768-b9c6aa79.png"},
|
||||
{
|
||||
id: "5", name: "Vikram Malhotra", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-business-consul-1772921589090-06ba7998.png"},
|
||||
{
|
||||
id: "6", name: "Anjali Gupta", imageSrc:
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-business-profes-1772921587999-8d3b2b36.png"},
|
||||
]}
|
||||
cardTitle="Trusted by Leading Enterprises & Innovation Leaders"
|
||||
cardTag="Client Success Stories"
|
||||
cardTagIcon={Star}
|
||||
cardAnimation="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Rajesh Kumar",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-confident-bus-1772921587891-f25070ea.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Priya Sharma",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-diverse-busin-1772921588358-beeca5a8.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Amit Patel",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-business-prof-1772921589249-14f4f6b7.png?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Neha Singh",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-a-diverse-busin-1772921587768-b9c6aa79.png",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Vikram Malhotra",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-business-consul-1772921589090-06ba7998.png",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Anjali Gupta",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-headshot-of-business-profes-1772921587999-8d3b2b36.png",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -326,114 +261,38 @@ export default function HomePage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Microsoft Azure",
|
||||
"Google Cloud",
|
||||
"Amazon AWS",
|
||||
"IBM Enterprise",
|
||||
"Oracle Solutions",
|
||||
"Salesforce",
|
||||
"SAP",
|
||||
"Accenture",
|
||||
]}
|
||||
"Microsoft Azure", "Google Cloud", "Amazon AWS", "IBM Enterprise", "Oracle Solutions", "Salesforce", "SAP", "Accenture"]}
|
||||
showCard={true}
|
||||
speed={40}
|
||||
buttonAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="industries" data-section="industries">
|
||||
<FeatureCardOne
|
||||
title="Industries We Transform"
|
||||
description="Proven expertise across diverse sectors with specialized solutions for unique business challenges."
|
||||
tag="Vertical Solutions"
|
||||
tagIcon={Briefcase}
|
||||
tagAnimation="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Manufacturing",
|
||||
description: "Production optimization, supply chain management, and factory automation solutions for operational excellence.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/modern-it-consulting-office-environment--1772921590042-7298f3f1.png?_wi=2",
|
||||
imageAlt: "Manufacturing Industry Solutions",
|
||||
},
|
||||
{
|
||||
title: "Retail & E-Commerce",
|
||||
description: "Omnichannel strategies, inventory management, and digital transformation for retail success.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/digital-marketing-analytics-dashboard-sh-1772921588252-a21c4902.png?_wi=2",
|
||||
imageAlt: "Retail Solutions",
|
||||
},
|
||||
{
|
||||
title: "Logistics & Supply Chain",
|
||||
description: "Fleet management, route optimization, and end-to-end logistics visibility and efficiency.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/cloud-infrastructure-and-network-securit-1772921589008-63a5f9b6.png?_wi=2",
|
||||
imageAlt: "Logistics Solutions",
|
||||
},
|
||||
{
|
||||
title: "Financial Services",
|
||||
description: "Compliance, risk management, and financial systems integration for secure operations.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/project-management-timeline-and-workflow-1772921589485-e1c2ee0f.png?_wi=2",
|
||||
imageAlt: "Financial Services Solutions",
|
||||
},
|
||||
{
|
||||
title: "Technology Companies",
|
||||
description: "Innovation acceleration, scalable infrastructure, and digital-first business model enablement.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/ifs-erp-system-interface-showing-modules-1772921589063-68e9e2ea.png?_wi=2",
|
||||
imageAlt: "Technology Solutions",
|
||||
},
|
||||
{
|
||||
title: "Healthcare & Pharma",
|
||||
description: "Regulatory compliance, patient data management, and operational efficiency solutions.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-consulting-team-in-modern-o-1772921588658-7fed3831.png?_wi=2",
|
||||
imageAlt: "Healthcare Solutions",
|
||||
},
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-cta" data-section="contact-cta">
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
title="Get in Touch with Our Experts"
|
||||
description="Ready to transform your business? Connect with our consulting team to discuss your unique requirements and discover how IIDR Tech Solutions can drive your digital transformation."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-team-collaboration-and-comm-1772921588181-43a4ac6e.png?_wi=1"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdTadLyAqpBmz7neLtBAvWbXkF/professional-team-collaboration-and-comm-1772921588181-43a4ac6e.png"
|
||||
imageAlt="Contact Our Team"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="blur-reveal"
|
||||
useInvertedBackground={true}
|
||||
buttonText="Send Message"
|
||||
inputs={[
|
||||
{ name: "fullName", type: "text", placeholder: "Full Name", required: true },
|
||||
{
|
||||
name: "fullName",
|
||||
type: "text",
|
||||
placeholder: "Full Name",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Email Address", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email Address",
|
||||
required: true,
|
||||
name: "company", type: "text", placeholder: "Company Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "company",
|
||||
type: "text",
|
||||
placeholder: "Company Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Phone Number",
|
||||
required: true,
|
||||
name: "phone", type: "tel", placeholder: "Phone Number", required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Tell us about your consulting needs and project requirements...",
|
||||
rows: 5,
|
||||
name: "message", placeholder:
|
||||
"Tell us about your consulting needs and project requirements...", rows: 5,
|
||||
required: true,
|
||||
}}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user