25-05-2025/New Changes

This commit is contained in:
2025-05-26 00:24:55 +02:00
parent d2281b9648
commit b19c24efc1
20 changed files with 11058 additions and 37 deletions

View File

@ -347,26 +347,24 @@ export default function ProductDevelopmentPage() {
<div className="container mx-auto px-6">
<SectionTitle>How OMS Delivers Market-Ready Products</SectionTitle>
{/* No intro paragraph provided for this specific subtitle in the source */}
<div className="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-5xl mx-auto">
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 max-w-5xl mx-auto">
{howOmsDeliversItems.map((item) => (
<div
key={item.title}
className="bg-white dark:bg-gray-700 p-6 rounded-lg shadow-md flex items-start space-x-4"
className="bg-white dark:bg-gray-700 p-4 rounded-lg shadow-md"
>
{item.icon && (
<item.icon
className="text-3xl text-gold-500 dark:text-gold-400 mt-1 flex-shrink-0"
className="text-3xl mb-3"
style={{ color: COLORS.primary }}
/>
)}
<div>
<h4 className="text-lg font-semibold mb-1 font-poppins dark:text-white">
{item.title}
</h4>
<p className="text-gray-600 dark:text-gray-300 text-sm leading-relaxed">
{item.description}
</p>
</div>
<h4 className="text-lg font-semibold mb-2 font-poppins dark:text-white">
{item.title}
</h4>
<p className="text-gray-600 dark:text-gray-300 text-sm leading-relaxed">
{item.description}
</p>
</div>
))}
</div>
@ -384,7 +382,28 @@ export default function ProductDevelopmentPage() {
designed and built to meet your current needs, but is also ready for
future growth and evolution.
</SectionParagraph>
<FeatureGrid items={endToEndItems} />
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 max-w-5xl mx-auto">
{endToEndItems.map((item) => (
<div
key={item.title}
className="bg-white dark:bg-gray-700 p-4 rounded-lg shadow-md"
>
{item.icon && (
<item.icon
className="text-3xl mb-3"
style={{ color: COLORS.primary }}
/>
)}
<h4 className="text-lg font-semibold mb-2 font-poppins dark:text-white">
{item.title}
</h4>
<p className="text-gray-600 dark:text-gray-300 text-sm leading-relaxed">
{item.description}
</p>
</div>
))}
</div>
{/* <FeatureGrid items={endToEndItems} /> */}
</div>
</section>