71 lines
4.1 KiB
TypeScript
71 lines
4.1 KiB
TypeScript
import React from 'react';
|
|
import Link from 'next/link';
|
|
|
|
const CounsellingSolutions: React.FC = () => {
|
|
return (
|
|
<section className="counselling-solutions section-space-top">
|
|
<div className="container">
|
|
<div className="row">
|
|
|
|
<div className="col-lg-6">
|
|
<div className="counselling-solutions__image">
|
|
<img
|
|
src="/assets/images/home/4/back.webp"
|
|
alt="Why choose metatroncube solution"
|
|
className="counselling-solutions__image__one"
|
|
/>
|
|
<img
|
|
src="/assets/images/home/4/front.webp"
|
|
alt="Why choose metatroncube solutions"
|
|
className="counselling-solutions__image__two"
|
|
/>
|
|
{/* <div className="counselling-solutions__image__watch-btn">
|
|
<Link href="https://www.youtube.com/watch?v=h9MbznbxlLc" className="video-popup">
|
|
<i className="fa-solid fa-award"></i>
|
|
</Link>
|
|
<span>Metatroncube Solutions</span>
|
|
</div> */}
|
|
</div>
|
|
</div>
|
|
<div className="col-lg-6">
|
|
<div className="counselling-solutions__title">
|
|
<div className="sec-title mt-50">
|
|
<div className="sec-title__shape"></div>
|
|
<h6 className="sec-title__tagline">METATRONCUBE</h6>
|
|
<h3 className="sec-title__title">
|
|
Why Choose Metatroncube Solution.
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
<div className="counselling-solutions__content">
|
|
{/* <p className="counselling-solutions__text">
|
|
Business tailored design, management & support services Business
|
|
business agency elit, sed do eiusmod tempor majority have
|
|
in some we form, by injected humour solution.
|
|
</p> */}
|
|
<p className="counselling-solutions__text">
|
|
<strong>Client-Centric Approach</strong>: Our dedication to client success sets us apart. We prioritize understanding your unique business needs, ensuring our digital solutions are tailored to your specific goals and objectives.
|
|
</p>
|
|
<p className="counselling-solutions__text">
|
|
<strong>Continuous Innovation & Learning</strong>: At Metatroncube, we're committed to staying ahead of industry trends. Our team regularly undergoes training and adopts new methodologies to deliver the most current and effective solutions.
|
|
</p>
|
|
<p className="counselling-solutions__text">
|
|
<strong>Collaborative Project Management</strong>: We believe in transparent and collaborative project management. Our clients are involved at every step, ensuring a seamless process from initial concept to final implementation.
|
|
</p>
|
|
|
|
{/* <div className="about-btn-box mt-4">
|
|
<Link className="primary-btn-1 btn-hover" href="/about">
|
|
Discover More | <i className="fa-solid fa-arrow-right"></i>
|
|
<span className="btn-hover-span"></span>
|
|
</Link>
|
|
</div> */}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default CounsellingSolutions;
|