23-05-2025/New Changes

This commit is contained in:
2025-05-23 14:45:53 +02:00
parent 0f3eaff970
commit d2281b9648
5 changed files with 72 additions and 59 deletions

View File

@ -422,28 +422,29 @@ export default function ResourceAugmentationPage() {
businesses today.
</p>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-2 gap-8 items-stretch">
{[
{
icon: FaPuzzlePiece,
title: "Skill Gaps",
desc: "Struggling to find specialized IT talent for specific project needs or new technologies.",
title: "Access Specialised Expertise",
desc: "Get experienced professionals in software development, business analysis, cybersecurity, cloud computing, data science, and more — bringing the right skills to your project, exactly when you need them.",
},
{
icon: FaChartLine,
title: "Fluctuating Demand",
desc: "Need to scale development or testing teams quickly for peak periods without long-term overhead.",
title: "Flexibility & Scalability",
desc: "Easily scale your team in response to changing project needs — expanding or reducing resources without long-term obligations, while maintaining agility and control.",
},
{
icon: FaClock,
title: "Project Delays",
desc: "Lack of internal resources causing bottlenecks and delaying critical project timelines.",
title: "Faster Onboarding & Deployment",
desc: "Our experts are project-ready, helping you accelerate delivery timelines and reduce the overhead typically associated with recruitment and training.",
},
{
icon: FaFileInvoiceDollar,
title: "Cost Control",
desc: "Wanting to manage IT personnel costs effectively, avoiding expensive recruitment and full-time hires.",
title: "Cost-Effective Hiring",
desc: "Maximize impact, minimize overhead — allowing you to scale your team according to project needs while managing costs efficiently and without compromising on quality. .",
},
/*
{
icon: FaBriefcase,
title: "Focus on Core Business",
@ -453,14 +454,16 @@ export default function ResourceAugmentationPage() {
icon: FaSyncAlt,
title: "Need for Flexibility",
desc: "Requiring adaptable staffing solutions that can change as project requirements evolve.",
},
},*/
].map((item) => (
<div
key={item.title}
className="bg-white dark:bg-gray-700 p-6 rounded-lg shadow-md text-center transform transition duration-300 hover:-translate-y-1 hover:shadow-lg"
className="bg-white dark:bg-gray-700 p-6 rounded-lg shadow-md text-center transform transition duration-300 hover:-translate-y-1 hover:shadow-lgflex flex-col h-full"
>
<item.icon
className="text-4xl text-red-500 dark:text-red-400 mx-auto mb-4" // Using red to signify challenges/needs
className="text-4xl mx-auto mb-4"
// Using red to signify challenges/needs
style={{ color: COLORS.primary }} // Use gold color
/>
<h4 className="text-xl font-semibold mb-2 font-poppins dark:text-white">
{item.title}
@ -639,45 +642,46 @@ export default function ResourceAugmentationPage() {
</section>
{/* 6. Benefits of Partnering with OMS Section */}
<section className="py-16 md:py-24 bg-gray-50 dark:bg-gray-800">
<div className="container mx-auto px-6">
<div className="text-center mb-12 md:mb-16">
<FaRegHandshake
className="text-5xl mx-auto mb-4"
style={{ color: COLORS.primary }}
/>
<h2 className="text-3xl md:text-4xl font-bold font-poppins text-gray-900 dark:text-white mb-4">
Why Choose OMS for Resource Augmentation?
</h2>
<p className="text-md md:text-lg text-gray-700 dark:text-gray-300 max-w-3xl mx-auto">
Leverage our expertise and flexible models to gain a competitive
advantage.
</p>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
{augmentationBenefits.map((benefit) => (
<div
key={benefit.title}
className="bg-white dark:bg-gray-700 p-6 rounded-lg shadow-md text-center transform transition duration-300 hover:-translate-y-1 hover:shadow-lg"
>
<benefit.icon
className="text-4xl mx-auto mb-4"
style={{ color: COLORS.primary }}
/>
<h4 className="text-lg font-semibold mb-2 font-poppins dark:text-white">
{benefit.title}
</h4>
<p className="text-gray-600 dark:text-gray-300 text-sm leading-relaxed">
{benefit.description}
</p>
</div>
))}
</div>
</div>
</section>
{/* Benefits of Resource Augmentation
<section className="py-16 md:py-24 bg-gray-50 dark:bg-gray-800">
<div className="container mx-auto px-6">
<div className="text-center mb-12 md:mb-16">
<FaRegHandshake
className="text-5xl mx-auto mb-4"
style={{ color: COLORS.primary }}
/>
<h2 className="text-3xl md:text-4xl font-bold font-poppins text-gray-900 dark:text-white mb-4">
Why Choose OMS for Resource Augmentation?
</h2>
<p className="text-md md:text-lg text-gray-700 dark:text-gray-300 max-w-3xl mx-auto">
Leverage our expertise and flexible models to gain a competitive
advantage.
</p>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
{augmentationBenefits.map((benefit) => (
<div
key={benefit.title}
className="bg-white dark:bg-gray-700 p-6 rounded-lg shadow-md text-center transform transition duration-300 hover:-translate-y-1 hover:shadow-lg"
>
<benefit.icon
className="text-4xl mx-auto mb-4"
style={{ color: COLORS.primary }}
/>
<h4 className="text-lg font-semibold mb-2 font-poppins dark:text-white">
{benefit.title}
</h4>
<p className="text-gray-600 dark:text-gray-300 text-sm leading-relaxed">
{benefit.description}
</p>
</div>
))}
</div>
</div>
</section>
*/}
{/* 7. Proven Experience / Past Projects (High Level) */}
<section className="py-16 md:py-24 bg-white dark:bg-gray-900">
<section className="py-16 md:py-24 bg-gradient-to-br from-gray-100 to-gray-200 dark:from-gray-800 dark:to-gray-700">
<div className="container mx-auto px-6">
<div className="text-center mb-12 md:mb-16">
<FaBusinessTime