64 lines
3.8 KiB
JavaScript
64 lines
3.8 KiB
JavaScript
import React from 'react';
|
|
import thumb from '../../assets/images/service-page.jpg';
|
|
import ServiceSideMenu from './ServiceSideMenu';
|
|
|
|
function DetailsService() {
|
|
return (
|
|
<>
|
|
<section className="appie-service-details-area pt-100 pb-100">
|
|
<div className="container">
|
|
<div className="row">
|
|
<div className="col-lg-4">
|
|
<ServiceSideMenu />
|
|
</div>
|
|
<div className="col-lg-8">
|
|
<div className="service-details-content">
|
|
<div className="thumb">
|
|
<img src={thumb} alt="" />
|
|
</div>
|
|
<div className="content">
|
|
<h3 className="title">What we have built</h3>
|
|
<p>
|
|
Tomfoolery wind up blag me old mucker chap super ruddy
|
|
chancer bobby, vagabond it's your round cuppa cheesed off
|
|
blower nice one at public school, Why cockup knackered pear
|
|
shaped amongst spiffing good time he nicked it.
|
|
</p>
|
|
<span>
|
|
He lost his bottle mufty spend a penny cheeky at public
|
|
school daft get stuffed mate don't get shirty.
|
|
</span>
|
|
<p>
|
|
My good sir cup of char no biggie knees up happy days
|
|
absolutely bladdered don't get shirty with me chimney pot
|
|
James Bond he lost his bottle me old mucker, bobby nice one
|
|
cack codswallop what a load of rubbish Jeffrey barmy blower
|
|
tomfoolery, crikey only a quid at public school mufty tosser
|
|
up the duff say Richard I don't want no agro. Owt to do with
|
|
me barney quaint jolly good off his nut vagabond pardon you
|
|
gutted mate the little rotter excuse my French, the bee's
|
|
knees don't get shirty with me he nicked it give us a bell
|
|
zonked lavatory Charles gosh, Eaton the BBC is victoria
|
|
sponge a William bog what a load of rubbish. Smashing only a
|
|
quid cockup he lost his bottle bugger Jeffrey mufty,
|
|
starkers blatant zonked easy peasy brolly car boot, blimey
|
|
at public school cheeky bugger you mug david. Tomfoolery a
|
|
load of old tosh Queen's English lemon squeezy old
|
|
hunky-dory mush chap give us a bell bloke, chancer knackered
|
|
cheesed off buggered tinkety tonk old fruit car boot only a
|
|
quid spiffing good time chinwag, he lost his bottle pukka
|
|
gutted mate naff horse play cup of tea baking cakes a
|
|
blinding shot. bobby the wireless matie boy show.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default DetailsService;
|