cibus-industries/components/service/ServiceDetails.jsx
2025-07-14 14:03:36 +05:30

239 lines
9.8 KiB
JavaScript

"use client";
import Link from "next/link";
import Image from "next/image";
import { services2 } from "@/data/services";
export default function ServiceDetails({ serviceItem }) {
return (
<section className="service-details-section section-padding">
<div className="container">
<div className="service-details-wrapper">
<div className="row g-4">
<div className="col-12 col-lg-8">
<div className="service-details-image">
<Image
src="/assets/img/service/details-1.jpg"
width={740}
height={336}
alt="img"
/>
</div>
<div className="service-details-content">
<h2>{serviceItem.title}</h2>
<p>
There are many variations of passages of Lorem Ipsum
available, but the majority have suffered alteration in some
form, by injected humour, or randomised words which don't look
even slightly believable. If you are going to use a passage of
Lorem Ipsum, you need to be sure there isn't anything
embarrassing hidden in the middle of text.
</p>
<p className="mt-4 mb-4">
There are many variations of passages of Lorem Ipsum
available, but the majority have suffered alteration in some
form, by injected humour, or randomised words which don't look
even slightly believable. If you are going to use a passage of
Lorem Ipsum,
</p>
<div className="row g-4">
<div className="col-lg-7">
<div className="service-details-image">
<Image
src="/assets/img/service/details-2.jpg"
width={413}
height={265}
alt="img"
/>
</div>
</div>
<div className="col-lg-5">
<div className="content">
<h3>Services Benefits:</h3>
<p className="mt-2 mb-2">
There are many Xbuild h variations of passages of Lorem
Ipsum available,
</p>
<p>
Xbuild h variations of be passages of Lorem Ipsum
available,
</p>
</div>
<ul className="details-list">
<li>
<i className="fa-solid fa-circle-check" />
We use the latest diagnostic equipment
</li>
<li>
<i className="fa-solid fa-circle-check" />
Automotive service our clients receive
</li>
<li>
<i className="fa-solid fa-circle-check" />
We use the latest diagnostic equipment
</li>
</ul>
</div>
</div>
<h4>3 Simple Steps to Process</h4>
<p className="mt-3">
There are many variations of passages of Lorem Ipsum
available, but the majority have suffered alteration in some
form, by injected humour, or randomised words which don't look
even slightly believable. If you are going to use a passage of
Lorem Ipsum,
</p>
<div className="row g-4 mt-2">
<div className="col-xl-4 col-lg-6 col-md-6">
<div className="service-details-box">
<div className="icon">
<Image
src="/assets/img/icon/15.svg"
width={28}
height={28}
alt="img"
/>
<h5>Planning</h5>
</div>
<p>
There are many Xbuild a variations of passages of Lorem
Ipsum
</p>
</div>
</div>
<div className="col-xl-4 col-lg-6 col-md-6">
<div className="service-details-box">
<div className="icon">
<Image
src="/assets/img/icon/16.svg"
width={36}
height={28}
alt="img"
/>
<h5>Design</h5>
</div>
<p>
There are many Xbuild a variations of passages of Lorem
Ipsum
</p>
</div>
</div>
<div className="col-xl-4 col-lg-6 col-md-6">
<div className="service-details-box">
<div className="icon">
<Image
src="/assets/img/icon/17.svg"
width={28}
height={28}
alt="img"
/>
<h5>Get Paid</h5>
</div>
<p>
There are many Xbuild a variations of passages of Lorem
Ipsum
</p>
</div>
</div>
</div>
<p className="mt-1 pt-4">
There are many variations of passages of Lorem Ipsum
available, but the majority have suffered alteration in some
form, by injected humour, or randomised words which don't look
even slightly believable. If you are going to use a passage of
Lorem Ipsum,
</p>
</div>
</div>
<div className="col-12 col-lg-4">
<div className="main-sidebar">
<div className="single-sidebar-widget">
<div className="search-widget">
<form onSubmit={(e) => e.preventDefault()}>
<input type="text" placeholder="Search" />
<button type="submit">
<i className="fa-solid fa-magnifying-glass" />
</button>
</form>
</div>
</div>
<div className="single-sidebar-widget">
<div className="wid-title">
<h3>Categories</h3>
</div>
<div className="news-widget-categories">
<ul>
{services2.map((elm, i) => (
<li key={i}>
<Link href={`/service-details/${elm.id}`}>
{elm.title}
</Link>
<span>
<i className="fa-regular fa-arrow-right-long" />
</span>
</li>
))}
</ul>
</div>
</div>
<div className="single-sidebar-widget">
<div className="wid-title">
<h3>Download</h3>
</div>
<div className="brochures-download-items">
<div className="brochures-items">
<div className="icon">
<i className="fal fa-file-pdf" />
</div>
<div className="content">
<h5>Our Brochures</h5>
<p>Download</p>
</div>
</div>
<Link href={`#`} className="download-btn">
<i className="fa-light fa-download" />
</Link>
</div>
<div className="brochures-download-items">
<div className="brochures-items">
<div className="icon">
<i className="fal fa-file-pdf" />
</div>
<div className="content">
<h5>Company Details</h5>
<p>Download</p>
</div>
</div>
<Link href={`#`} className="download-btn active">
<i className="fa-light fa-download" />
</Link>
</div>
</div>
<div className="service-sidebar-widget">
<div
className="contact-bg text-center bg-cover"
style={{
backgroundImage:
'url("/assets/img/service/contact-bg.jpg")',
}}
>
<p>Do You Need Help? We're Here to Support You</p>
<Image
src="/assets/img/service/logo.png"
width={149}
height={64}
alt="img"
/>
<Link href={`/contact`} className="theme-btn w-100">
Contact us now
<i className="fa-regular fa-arrow-right" />
</Link>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
);
}