This commit is contained in:
akash 2025-09-30 21:55:41 +05:30
commit 68f16697da
5 changed files with 172 additions and 156 deletions

View File

@ -43,6 +43,19 @@ export default function RootLayout({ children }) {
media="print" media="print"
onLoad="this.media='all'" onLoad="this.media='all'"
/> />
{/* Microsoft Clarity Tracking */}
<script
dangerouslySetInnerHTML={{
__html: `
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/th7p0lr1ca";
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "th7p0lr1ca");
`,
}}
/>
</Head> </Head>
<body> <body>
{children} {children}

View File

@ -35,7 +35,9 @@ export default function AreaOfInjury() {
<div className="row clearfix"> <div className="row clearfix">
{areaOfInjuryData.slice(0, 8).map((area, index) => ( {areaOfInjuryData.slice(0, 8).map((area, index) => (
<div key={index} className="col-lg-3 col-md-6 col-6 team-block d-flex"> <div key={index} className="col-lg-3 col-md-6 col-6 team-block d-flex">
<div className="team-block-one wow fadeInUp animated d-flex flex-column flex-grow-1" data-wow-delay={`${index * 200}ms`} data-wow-duration="1500ms"> <div className="team-block-one wow fadeInUp animated d-flex flex-column flex-grow-1"
// data-wow-delay={`${index * 50}ms`} data-wow-duration="500ms"
>
<div className="inner-box d-flex flex-column flex-grow-1"> <div className="inner-box d-flex flex-column flex-grow-1">
<div className="image-box"> <div className="image-box">
<figure className="image"> <figure className="image">

View File

@ -78,7 +78,7 @@ const revealVariants = {
opacity: 1, opacity: 1,
originX: 0, originX: 0,
transition: { transition: {
duration: 0.8, duration: 0.6,
ease: "easeInOut" ease: "easeInOut"
} }
}, },
@ -190,9 +190,10 @@ export default function Banner() {
<h2 style={{ color: "#bc0000" }}> Heal </h2> <h2 style={{ color: "#bc0000" }}> Heal </h2>
<p className=' text-white'> Pain Relief mobility Wellness </p> <p className=' text-white'> Pain Relief mobility Wellness </p>
<div className="btn-box mt-3"> <div className="btn-box mt-3">
<Link href="/etobicoke-treatment-service" className="theme-btn btn-one"> <Link href="/contact" className="theme-btn btn-one">
<span>Explore Our Service</span> <span>Schedule a Massage</span>
</Link> </Link>
</div> </div>
</div> </div>
</div> </div>
@ -218,8 +219,8 @@ export default function Banner() {
<h2 style={{ color: "#bc0000" }}>Performance</h2> <h2 style={{ color: "#bc0000" }}>Performance</h2>
<p className=' text-white'> Pain Relief Active Care Long-Term Result</p> <p className=' text-white'> Pain Relief Active Care Long-Term Result</p>
<div className="btn-box mt-3"> <div className="btn-box mt-3">
<Link href="/contact" className="theme-btn btn-one"> <Link href="/etobicoke-treatment-service" className="theme-btn btn-one">
<span>Schedule a Massage</span> <span>Explore Our Service</span>
</Link> </Link>
</div> </div>
</div> </div>

File diff suppressed because one or more lines are too long

View File

@ -3,7 +3,7 @@ const path = require("path");
const { SitemapStream, streamToPromise } = require("sitemap"); const { SitemapStream, streamToPromise } = require("sitemap");
const { pathToFileURL } = require("url"); const { pathToFileURL } = require("url");
const hostname = "https://rapharehap.metatronnest.com"; const hostname = "https://rapharehab.ca";
const addTrailingSlash = true; // ✅ Set this true if your Next.js uses trailingSlash: true const addTrailingSlash = true; // ✅ Set this true if your Next.js uses trailingSlash: true
// // 🔧 Utility to format URLs based on config // // 🔧 Utility to format URLs based on config