fix sections
This commit is contained in:
@@ -13,6 +13,11 @@ export default function Footer3() {
|
||||
<img className="footer-logo" src="/images/logo-pink.png" alt="footer-logo" />
|
||||
<img className="footer-logo-dark" src="/images/logo-pink-white.png" alt="footer-logo" />
|
||||
</div>
|
||||
<div>
|
||||
<p>
|
||||
MERMS, a HIPAA compliant healthcare reputation management platform, helps doctors & medical practitioner improve their online reputation.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{/* FOOTER LINKS */}
|
||||
<div className="col-xl-3">
|
||||
|
||||
@@ -0,0 +1,77 @@
|
||||
|
||||
|
||||
export default function MermsFeatures2() {
|
||||
return (
|
||||
<>
|
||||
<section id="features-1" className="pt-100 features-section division">
|
||||
<div className="container">
|
||||
{/* SECTION TITLE */}
|
||||
<div className="row justify-content-center">
|
||||
<div className="col-md-10 col-lg-9">
|
||||
<div className="section-title mb-80">
|
||||
{/* Title */}
|
||||
<h2 className="s-50 w-700">Supercharge your digital presence with AI.</h2>
|
||||
{/* Text */}
|
||||
<p className="s-21 color--grey">Unified AI-powered solutions for everything that matters to your online reputation and engagement.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/* FEATURES-1 WRAPPER */}
|
||||
<div className="fbox-wrapper text-center">
|
||||
<div className="row row-cols-1 row-cols-md-3">
|
||||
{/* FEATURE BOX #1 */}
|
||||
<div className="col">
|
||||
<div className="fbox-1 fb-1 wow fadeInUp">
|
||||
{/* Image */}
|
||||
<div className="fbox-img h-175">
|
||||
<img className="img-fluid light-theme-img" src="/images/f_01.png" alt="feature-image" />
|
||||
<img className="img-fluid dark-theme-img" src="/images/f_01_dark.png" alt="feature-image" />
|
||||
</div>
|
||||
{/* Text */}
|
||||
<div className="fbox-txt">
|
||||
<h6 className="s-22 w-700">Intuitive Dashboard</h6>
|
||||
<p>Smart dashboard that adapts to focus processes and tasks that optimized your targets.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div> {/* END FEATURE BOX #1 */}
|
||||
{/* FEATURE BOX #2 */}
|
||||
<div className="col">
|
||||
<div className="fbox-1 fb-2 wow fadeInUp">
|
||||
{/* Image */}
|
||||
<div className="fbox-img h-175">
|
||||
<img className="img-fluid light-theme-img" src="/images/f_05.png" alt="feature-image" />
|
||||
<img className="img-fluid dark-theme-img" src="/images/f_05_dark.png" alt="feature-image" />
|
||||
</div>
|
||||
{/* Text */}
|
||||
<div className="fbox-txt">
|
||||
<h6 className="s-22 w-700">Effortless Integration</h6>
|
||||
<p>With real-time API interfaces, we have dozens of ways to slice and analyze your data.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div> {/* END FEATURE BOX #2 */}
|
||||
{/* FEATURE BOX #3 */}
|
||||
<div className="col">
|
||||
<div className="fbox-1 fb-3 wow fadeInUp">
|
||||
{/* Image */}
|
||||
<div className="fbox-img h-175">
|
||||
<img className="img-fluid light-theme-img" src="/images/f_02.png" alt="feature-image" />
|
||||
<img className="img-fluid dark-theme-img" src="/images/f_02_dark.png" alt="feature-image" />
|
||||
</div>
|
||||
{/* Text */}
|
||||
<div className="fbox-txt">
|
||||
<h6 className="s-22 w-700">Engagement Analysis</h6>
|
||||
<p>Optimize your online profiles across search engines, maps, and high-visibility.
|
||||
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div> {/* END FEATURE BOX #3 */}
|
||||
</div> {/* End row */}
|
||||
</div> {/* END FEATURES-1 WRAPPER */}
|
||||
</div> {/* End container */}
|
||||
</section>
|
||||
</>
|
||||
)
|
||||
}
|
||||
+4
-12
@@ -8,7 +8,7 @@ import Ct01_16 from "../components/sections/Ct01_16"
|
||||
// import Ct04_7 from "../components/sections/Ct04_7"
|
||||
// import Faqs3_9 from "../components/sections/Faqs3_9"
|
||||
//import Features13_5 from "../components/sections/Features13_5"
|
||||
import Features1_2 from "../components/sections/Features1_2"
|
||||
//import Features1_2 from "../components/sections/Features1_2"
|
||||
// import Features5_8 from "../components/sections/Features5_8"
|
||||
//import Hero13 from "../components/sections/Hero13"
|
||||
// import Integrations2_6 from "../components/sections/Integrations2_6"
|
||||
@@ -20,18 +20,9 @@ import MersmHero from "../components/sections/MersmHero";
|
||||
import MermsFeatures from "../components/sections/MermsFeatures";
|
||||
import MermsAbout from "../components/sections/MermsAbout";
|
||||
import MermsHowItWorks from "../components/sections/MermsHowItWorks";
|
||||
import MermsFeatures2 from "../components/sections/MermsFeatures2";
|
||||
|
||||
|
||||
// <!-- Google tag (gtag.js) -->
|
||||
// <script async src="https://www.googletagmanager.com/gtag/js?id=G-Y9QSQFV003"></script>
|
||||
// <script>
|
||||
// window.dataLayer = window.dataLayer || [];
|
||||
// function gtag(){dataLayer.push(arguments);}
|
||||
// gtag('js', new Date());
|
||||
//
|
||||
// gtag('config', 'G-Y9QSQFV003');
|
||||
// </script>
|
||||
|
||||
export default function ProductHome() {
|
||||
|
||||
return (
|
||||
@@ -50,7 +41,8 @@ export default function ProductHome() {
|
||||
{/*<Lnk2_13 />*/}
|
||||
{/*<Ct01_15 />*/}
|
||||
{/*<Ct03_6 />*/}
|
||||
<Features1_2 />
|
||||
<MermsFeatures2 />
|
||||
{/*<Features1_2 />*/}
|
||||
{/*<Integrations2_6 />*/}
|
||||
<Ct01_16 />
|
||||
{/*<Features5_8 />*/}
|
||||
|
||||
Reference in New Issue
Block a user