26 lines
844 B
JavaScript
26 lines
844 B
JavaScript
import React from 'react';
|
||
import AboutTextComponent from '../AboutText/AboutText';
|
||
|
||
|
||
function ServicesAbout() {
|
||
return (
|
||
<>
|
||
<section className="appie-services-2-area pt-90 pb-55" id="service">
|
||
<div className="container">
|
||
<div className="row align-items-end">
|
||
<div className="col-12 col-lg-8">
|
||
<div className="appie-section-title">
|
||
<h3 className="appie-title">We’re driven by your values</h3>
|
||
{/*<p>The app provides design and digital marketing. </p>*/}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
</section>
|
||
</>
|
||
);
|
||
}
|
||
|
||
export default ServicesAbout;
|