privacy policy page - added

This commit is contained in:
vidhya 2026-06-17 23:49:13 +05:30
parent 90101ac5c1
commit 73f01fa511
6 changed files with 322 additions and 6 deletions

View File

@ -36,7 +36,7 @@ export default function Error404() {
<div className="form-group"> <div className="form-group">
<div className="check-box"> <div className="check-box">
<input className="check" type="checkbox" id="checkbox1" /> <input className="check" type="checkbox" id="checkbox1" />
<label htmlFor="checkbox1" aria-label="Pricacy Policy">I agree to the <Link href="/" aria-label="Privacy Policy">Privacy Policy.</Link></label> <label htmlFor="checkbox1" aria-label="Privacy Policy">I agree to the <Link href="/privacy-policy" aria-label="Privacy Policy">Privacy Policy.</Link></label>
</div> </div>
</div> </div>
</form> </form>

View File

@ -134,7 +134,7 @@ export default function About() {
<div className="form-group"> <div className="form-group">
<div className="check-box"> <div className="check-box">
<input className="check" type="checkbox" id="checkbox1" /> <input className="check" type="checkbox" id="checkbox1" />
<label htmlFor="checkbox1">I agree to the <Link href="index">Privacy Policy.</Link></label> <label htmlFor="checkbox1">I agree to the <Link href="/privacy-policy">Privacy Policy.</Link></label>
</div> </div>
</div> </div>
</form> </form>

310
app/privacy-policy/page.js Normal file
View File

@ -0,0 +1,310 @@
import Layout from "@/components/layout/Layout";
import Link from "next/link";
export const metadata = {
title: "Privacy Policy | Rapha Rehab",
description:
"Read how Rapha Rehab Physiotherapy & Massage Therapy Clinic collects, uses, stores, and protects personal information.",
};
const policySections = [
{
title: "Information We Collect",
body: "We may collect the following types of information:",
groups: [
{
title: "Personal Information",
items: [
"Full name",
"Phone number",
"Email address",
"Postal code",
"Appointment preferences",
"Health-related information voluntarily submitted through forms",
"Insurance information provided during appointments",
],
},
{
title: "Website Usage Information",
body: "When you visit our website, we may automatically collect:",
items: [
"IP address",
"Browser type",
"Device information",
"Pages visited",
"Date and time of visit",
"Website interaction data",
],
},
],
},
{
title: "How We Collect Information",
body: "We collect information when you:",
items: [
"Fill out a contact form",
"Request an appointment",
"Submit a consultation request",
"Call our clinic",
"Send an email inquiry",
"Interact with our Facebook, Instagram, or Google advertisements",
"Subscribe to newsletters or promotions",
"Visit our website",
],
},
{
title: "How We Use Your Information",
body: "We may use your information to:",
items: [
"Schedule and manage appointments",
"Respond to inquiries",
"Provide physiotherapy, massage therapy, chiropractic, acupuncture, and rehabilitation services",
"Verify insurance coverage",
"Improve our website and services",
"Send appointment reminders",
"Provide clinic updates and promotional offers",
"Comply with legal and regulatory requirements",
],
},
{
title: "Facebook & Meta Advertising",
body: "We may use Facebook Pixel, Meta Conversion API, and similar tracking technologies to measure advertising performance, understand visitor behavior, improve user experience, and deliver relevant advertisements.",
groups: [
{
body: "These technologies may collect information such as:",
items: [
"Pages viewed",
"Time spent on the website",
"Device information",
"Browser information",
],
},
],
footer:
"You can manage your advertising preferences through your Facebook account settings.",
},
{
title: "Cookies",
body: "Our website uses cookies and similar technologies to improve your browsing experience.",
groups: [
{
body: "Cookies help us:",
items: [
"Analyze website traffic",
"Remember user preferences",
"Improve website functionality",
"Measure advertising effectiveness",
],
},
],
footer: "You may disable cookies through your browser settings at any time.",
},
{
title: "Information Sharing",
body: "We do not sell, rent, or trade your personal information.",
groups: [
{
body: "We may share information only with:",
items: [
"Healthcare practitioners involved in your treatment",
"Insurance providers, when authorized",
"Website and technology service providers",
"Legal or regulatory authorities when required by law",
],
},
],
footer:
"All third-party service providers are required to maintain confidentiality and protect your information.",
},
{
title: "Data Security",
body: "We implement reasonable administrative, technical, and physical safeguards to protect your information from:",
items: [
"Unauthorized access",
"Disclosure",
"Alteration",
"Misuse",
"Loss",
],
footer:
"While we strive to protect your information, no method of internet transmission is completely secure.",
},
{
title: "Data Retention",
body: "We retain personal information only as long as necessary to:",
items: [
"Provide healthcare services",
"Maintain patient records",
"Meet legal, regulatory, and professional obligations",
],
},
{
title: "Third-Party Websites",
body: "Our website may contain links to third-party websites. We are not responsible for the privacy practices of external websites. We encourage users to review the privacy policies of any website they visit.",
},
{
title: "Your Privacy Rights",
body: "You may request to:",
items: [
"Access your personal information",
"Correct inaccurate information",
"Withdraw marketing consent",
"Request deletion of information where legally permitted",
],
footer: "To exercise these rights, please contact us using the information below.",
},
{
title: "Children's Privacy",
body: "Our website is not intended for children under the age of 13. We do not knowingly collect personal information from children without parental consent.",
},
{
title: "Changes to This Privacy Policy",
body: "We may update this Privacy Policy periodically. Any changes will be posted on this page with an updated revision date.",
},
];
const privacyListStyle = {
marginTop: "20px",
};
const contactListStyle = {
listStyle: "none",
marginTop: "20px",
paddingLeft: 0,
};
const contactListItemStyle = {
alignItems: "center",
display: "flex",
gap: "14px",
marginBottom: "17px",
};
const contactIconStyle = {
alignItems: "center",
background: "#ffe6e6",
borderRadius: "50%",
color: "var(--theme-color)",
display: "inline-flex",
flexShrink: 0,
fontSize: "14px",
height: "30px",
justifyContent: "center",
width: "30px",
};
function BulletList({ items }) {
if (!items?.length) {
return null;
}
return (
<ul className="list-style-one clearfix mb_20" style={privacyListStyle}>
{items.map((item) => (
<li key={item}>{item}</li>
))}
</ul>
);
}
export default function PrivacyPolicyPage() {
return (
<Layout
headerStyle={1}
footerStyle={1}
breadcrumbTitle="Privacy Policy"
bannerImage="/assets/images/privacy-policy/privacy-policy-banner.png"
>
<section className="sidebar-page-container pt_90 pb_90">
<div className="auto-container">
<div className="row clearfix justify-content-center">
<div className="col-lg-10 col-md-12 col-sm-12 content-side">
<div className="blog-details-content">
<div className="content-one">
<div className="sec-title mb_30">
<span className="sub-title">Last Updated: June 2026</span>
<h2>
Privacy Policy for Rapha Rehab Physiotherapy & Massage
Therapy Clinic
</h2>
</div>
<p>
At Rapha Rehab Physiotherapy & Massage Therapy Clinic
("Rapha Rehab", "we", "our", or "us"), we respect your
privacy and are committed to protecting the personal
information you provide through our website, online forms,
social media advertisements, phone calls, and clinic
services.
</p>
<p>
This Privacy Policy explains how we collect, use, store, and
protect your information when you visit our website or
interact with our services.
</p>
</div>
<div className="content-one mt_40">
{policySections.map((section) => (
<div className="mb_35" key={section.title}>
<h3 className="mb_15">{section.title}</h3>
{section.body && <p>{section.body}</p>}
<BulletList items={section.items} />
{section.groups?.map((group, index) => (
<div key={`${section.title}-${index}`} className="mt_20">
{group.title && <h4 className="mb_10">{group.title}</h4>}
{group.body && <p>{group.body}</p>}
<BulletList items={group.items} />
</div>
))}
{section.footer && <p>{section.footer}</p>}
</div>
))}
<div className="mb_0">
<h3 className="mb_15">Contact Us</h3>
<p>Rapha Rehab Physiotherapy & Massage Therapy Clinic</p>
<ul className="clearfix mb_20" style={contactListStyle}>
<li style={contactListItemStyle}>
<span style={contactIconStyle}>
<i className="fas fa-map-marker-alt"></i>
</span>
Address: Etobicoke, Ontario, Canada
</li>
<li style={contactListItemStyle}>
<span style={contactIconStyle}>
<i className="icon-2"></i>
</span>
Phone:{" "}
<Link href="tel:647-722-3434">647-722-3434</Link>
</li>
<li style={contactListItemStyle}>
<span style={contactIconStyle}>
<i className="fas fa-globe"></i>
</span>
Website:{" "}
<Link href="https://rapharehab.ca/">
Rapha Rehab Physiotherapy & Massage Therapy Clinic
</Link>
</li>
<li style={contactListItemStyle}>
<span style={contactIconStyle}>
<i className="icon-26"></i>
</span>
Email:{" "}
<Link href="mailto:bloor@rapharehab.ca">
bloor@rapharehab.ca
</Link>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</Layout>
);
}

View File

@ -202,7 +202,10 @@ export default function Footer2() {
aria-label="Metatroncubesolutions"> aria-label="Metatroncubesolutions">
MetatronCube MetatronCube
</a>{" "} </a>{" "}
All Rights Reserved All Rights Reserved |{" "}
<Link href="/privacy-policy" aria-label="Privacy Policy">
Privacy Policy
</Link>
</p> </p>
</div> </div>
</div> </div>
@ -211,4 +214,4 @@ export default function Footer2() {
</footer> </footer>
</> </>
) )
} }

View File

@ -202,7 +202,10 @@ export default function Footer2() {
aria-label="Metatroncubesolutions"> aria-label="Metatroncubesolutions">
MetatronCube MetatronCube
</a>{" "} </a>{" "}
All Rights Reserved All Rights Reserved |{" "}
<Link href="/privacy-policy" aria-label="Privacy Policy">
Privacy Policy
</Link>
</p> </p>
</div> </div>
</div> </div>
@ -211,4 +214,4 @@ export default function Footer2() {
</footer> </footer>
</> </>
) )
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB