45 lines
2.3 KiB
JavaScript
45 lines
2.3 KiB
JavaScript
import Link from "next/link";
|
|
|
|
export default function MermsBlogFix() {
|
|
return (
|
|
<>
|
|
<div className="blog-post square-post">
|
|
<div className="row">
|
|
<div className="col">
|
|
<div className="square-post-wrapper bg--black-400 block-shadow r-16 wow fadeInUp">
|
|
<div className="row d-flex align-items-center">
|
|
|
|
<div className="col-md-6 order-last order-md-2">
|
|
<div className="blog-post-txt color--white">
|
|
|
|
<h4 className="s-34 w-700 mb-20">
|
|
<Link href="/merms-blogview">Lipsum sodales sapien Martex aliquet blandit
|
|
augue gravida posuere
|
|
</Link>
|
|
</h4>
|
|
|
|
<p>Aliqum mullam blandit vitae and tempor sapien and donec lipsum gravida porta
|
|
undo velna dolor libero risus aliquet tempus posuere vitae tempor
|
|
</p>
|
|
|
|
<div className="blog-post-meta mt-30">
|
|
<ul className="post-meta-list ico-10">
|
|
<li><p className="w-500">MermsEmr Team</p></li>
|
|
<li className="meta-list-divider"><p><span className="flaticon-minus" /></p></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="col-md-6 order-first order-md-2">
|
|
<div className="blog-post-img video-preview">
|
|
<img className="img-fluid" src="/images/blog/post-10-img.jpg" alt="video-preview" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</>
|
|
)
|
|
} |