Almost updated

This commit is contained in:
mukesh13
2025-08-13 20:21:20 +05:30
parent c6629e4daa
commit a286215d0f
31 changed files with 1163 additions and 665 deletions

View File

@ -1,32 +1,156 @@
import React from "react";
import Image from "next/image";
import ServiceInfo from "./ServiceInfo";
export default function ServiceDetails() {
// Service-specific data
const serviceDetailsData = {
11: { // Health Insurance
title: "Data Entry Services",
description:
"Keystone offers quality data entry services for various businesses and industries. We guarantee timely delivery without compromising the exceptional quality we are known for. Using the latest technologies, we ensure fast turnaround times and accurate results. Our commitment is to provide reliable, high-quality services at costs that remain affordable to all our clients.Our Data Entry Services include:",
image: "/images/section/img-with-shape-6.jpg",
features: [
"Online Data Entry",
"Offline Data Entry",
"MS Access Data Entry",
"Excel Data Entry",
"XML Data Entry",
"Web Data Entry",
"Questionnaire Data Entry",
"Insurance Claims Data Entry",
"Data Capture",
"Book Data Entry",
"Online Typing Services",
"XML Conversion",
"Data Input Services",
"Data Purchasing",
"Medical Billing",
"MSDS Data",
"Data Keying Services"
]
},
12: { // Property Insurance
title: "Data Conversion",
description:
"Keystone provides professional data conversion services, transforming your existing physical or digital data into the required format with zero risk of data loss. Our skilled team and proven technologies ensure accurate, high-quality results delivered on time.",
image: "/images/section/img-with-shape-6.jpg",
features: [
"XML / XHTML Conversion",
"PDF Conversion",
"TEXT / TXT Conversion",
"Document OCR Conversion",
"Catalogue Conversion",
"File Conversion",
"HTML Conversion",
"Audio Conversion",
"Book Conversion",
"XLS / CSV Conversion",
"Image Conversion"
]
},
13: { // Business Insurance
title: "Data Processing",
description:
"Keystone offers superior data processing services 365x24x7. We undertake all types of data processing services at affordable costs. We ensure advanced analysis, summary, and synthesis of complex and unsorted raw data. We undertake bulk data processing, providing valuable information out of raw and unstructured data. Our Data Processing Services include:",
image: "/images/section/img-with-shape-6.jpg",
features: [
"Word Processing",
"Check Processing",
"Form Processing",
"OCR Cleanup",
"Survey Processing",
"Resume Processing",
"Image Processing",
"Catalogue Processing",
"Credit Card Processing",
"Medical Data Processing",
"Insurance Claims Processing"
]
},
14: { // Life Insurance
title: "Receipt Data Entry Services",
description:
"Keystone offers reliable Receipt Data Entry Services to help businesses maintain accurate digital records of their receipts. Our advanced technology and skilled professionals ensure high-quality data, consistency, and quick turnaround times to support your business operations.",
image: "/images/section/img-with-shape-6.jpg",
features: [] // no subcategories in brochure
},
15: { // Auto Insurance
title: "Logistics Data Entry Services",
description:
"Keystone provides high-quality Logistics Data Entry Services to clients worldwide. We prioritize accuracy and timely delivery, ensuring you have reliable information at your fingertips to manage your logistics business efficiently. Our skilled team delivers superior data entry performance, handles bulk projects with ease, and offers services at affordable rates—allowing you to focus on timely deliveries. Our services in Logistics Data Entry Services include:",
image: "/images/section/img-with-shape-6.jpg",
features: [
"Freight Bill Data Entry",
"Freight Bill Processing",
"Contract Management",
"Bill of Lading Verification & Data Entry",
"Invoice Processing"
]
}
};
export default function ServiceDetails({ service }) {
// Get service-specific data or fall back to default
const serviceData = serviceDetailsData[service?.id] || {
title: "INSURANCE SERVICES",
description: "Keystone offers comprehensive insurance solutions tailored to your specific needs. Our experienced team provides personalized service and competitive rates to ensure you get the coverage that's right for you.",
image: "/images/section/img-with-shape-6.jpg",
features: [
"Personalized Consultation",
"Competitive Rates",
"24/7 Customer Support",
"Claims Assistance",
"Policy Management",
"Risk Assessment",
"Coverage Reviews",
"Multi-policy Discounts"
]
};
// Inline styles for the list container
const listContainerStyles = {
columns: 2,
columnGap: '20px',
listStyleType: 'disc',
paddingLeft: '20px',
marginLeft: '15px',
display: 'block'
};
// Inline styles for list items
const listItemStyles = {
marginBottom: '8px',
paddingLeft: '5px',
breakInside: 'avoid',
listStyleType: 'disc',
display: 'list-item',
listStylePosition: 'outside'
};
return (
<>
<div className="text-with-img-2 v2 tf-spacing-11">
<div className="text-with-img-2 v2 tf-spacing-47">
<div className="tf-container">
<div className="row">
<div className="col-xl-6">
<div className="content">
<h2 className="title">
Tailor The Message To Resonate With Your Apecific Audience.
{serviceData.title}
</h2>
<p className="description text-body-1 text_mono-gray-7 description-1">
Business strategy planning is the cornerstone of
organizational success. It involves a systematic process of
defining a company's long-term goals and objectives, and then
devising a plan to achieve them. A well-crafted strategy
provides a roadmap for the entire organization, ensuring
alignment and focus.
</p>
<p className="description text-body-1 text_mono-gray-7 description-2">
By investing time and effort in strategic planning,
organizations can position themselves for long-term success.
Regular review and adjustment of the strategy is crucial to
adapt to changing market conditions and emerging
opportunities.
{serviceData.description}
</p>
{serviceData.features.length > 0 && (
<ul
className="description text-body-1 text_mono-gray-7 description-2"
style={listContainerStyles}
>
{serviceData.features.map((feature, index) => (
<li key={index} style={listItemStyles}>
{feature}
</li>
))}
</ul>
)}
</div>
</div>
<div className="col-xl-6">
@ -34,7 +158,7 @@ export default function ServiceDetails() {
<div className="shape-img-bg mgl-auto">
<Image
alt="shape"
src="/images/section/img-with-shape-6.jpg"
src={serviceData.image}
width={696}
height={598}
/>
@ -93,19 +217,6 @@ export default function ServiceDetails() {
</div>
</div>
</div>
<div className="section-service style-3 tf-spacing-9">
<div className="tf-container">
<div className="heading-secion mb_88">
<h2>Comprehensive Service Information</h2>
<p className="text-body-1 text_mono-gray-7 mt_18">
Our comprehensive service offerings are designed to elevate your
business and <br />
drive sustainable growth.
</p>
</div>
<ServiceInfo />
</div>
</div>
</>
);
}
}