450 lines
19 KiB
TypeScript
450 lines
19 KiB
TypeScript
"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';
|
|
|
|
export default function HomePage() {
|
|
const navItems = [
|
|
{ name: "Services", id: "services" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Industries", id: "industries" },
|
|
{ name: "Contact", id: "contact" },
|
|
];
|
|
|
|
const footerColumns = [
|
|
{
|
|
title: "Solutions",
|
|
items: [
|
|
{ label: "Digital Marketing", href: "/services" },
|
|
{ label: "IT Infrastructure", href: "/services" },
|
|
{ label: "Project Management", href: "/services" },
|
|
{ label: "ERP Implementation", href: "/services" },
|
|
],
|
|
},
|
|
{
|
|
title: "Company",
|
|
items: [
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Industries", href: "/industries" },
|
|
{ label: "Case Studies", href: "#" },
|
|
{ label: "Careers", href: "#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Legal",
|
|
items: [
|
|
{ label: "Privacy Policy", href: "#" },
|
|
{ label: "Terms of Service", href: "#" },
|
|
{ label: "Cookie Policy", href: "#" },
|
|
{ label: "Contact", href: "/contact" },
|
|
],
|
|
},
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="bounce-effect"
|
|
defaultTextAnimation="reveal-blur"
|
|
borderRadius="soft"
|
|
contentWidth="mediumSmall"
|
|
sizing="large"
|
|
background="none"
|
|
cardStyle="layered-gradient"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="semibold"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="IIDR Tech"
|
|
navItems={navItems}
|
|
button={{
|
|
text: "Request Consultation",
|
|
href: "/contact",
|
|
}}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplitTestimonial
|
|
title="Transform Your Business with Expert IT & ERP Solutions"
|
|
description="Empower your organization through digital transformation, advanced IT infrastructure, and seamless ERP implementation. Partner with IIDR Tech Solutions for proven expertise and global reach."
|
|
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"
|
|
imageAlt="IIDR Tech Solutions - Modern IT Consulting"
|
|
imagePosition="right"
|
|
mediaAnimation="slide-up"
|
|
buttons={[
|
|
{
|
|
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: "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: "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",
|
|
},
|
|
]}
|
|
testimonialRotationInterval={5000}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardOne
|
|
title="Comprehensive Business Solutions"
|
|
description="Our four core service pillars deliver transformative value for enterprises seeking growth and digital excellence."
|
|
tag="Services"
|
|
tagIcon={Target}
|
|
tagAnimation="blur-reveal"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
gridVariant="two-columns-alternating-heights"
|
|
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: "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: "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: "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",
|
|
},
|
|
]}
|
|
buttonAnimation="blur-reveal"
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<SplitAbout
|
|
title="About IIDR Tech Solutions"
|
|
description="We are a globally recognized IT consulting and digital services firm dedicated to helping businesses thrive through technology and digital transformation."
|
|
tag="Our Story"
|
|
tagIcon={BookOpen}
|
|
tagAnimation="blur-reveal"
|
|
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"
|
|
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: "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: "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>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardSeven
|
|
title="Our Track Record"
|
|
description="Delivering measurable impact and proven results for enterprise clients globally."
|
|
tag="Impact"
|
|
tagIcon={TrendingUp}
|
|
tagAnimation="blur-reveal"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
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: "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: "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"
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTwelve
|
|
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>
|
|
|
|
<div id="social-proof" data-section="social-proof">
|
|
<SocialProofOne
|
|
title="Partnerships with Industry Leaders"
|
|
description="Trusted by global technology leaders and enterprise partners for collaborative innovation."
|
|
tag="Strategic Partners"
|
|
tagIcon={Handshake}
|
|
tagAnimation="blur-reveal"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
names={[
|
|
"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">
|
|
<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"
|
|
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: "email",
|
|
type: "email",
|
|
placeholder: "Email Address",
|
|
required: true,
|
|
},
|
|
{
|
|
name: "company",
|
|
type: "text",
|
|
placeholder: "Company Name",
|
|
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,
|
|
required: true,
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseReveal
|
|
columns={footerColumns}
|
|
copyrightText="© 2025 IIDR Tech Solutions. All rights reserved. | Transforming Businesses Through Technology"
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |