Privacy Policy
To customize the Privacy Policy page title and details, follow these steps:
Page Title
-
Open the
app/privacy/page.jsx
file. -
Locate the code block containing the
<PageHero>
component. -
Edit the
<h2>
tag to customize the page title. Use the provided code as a reference:
<h2>Privacy</h2>
<p>
Last updated: <span>January 2020 </span>
</p>
Customize the content inside the <h2>
and <p>
tags to change the page title and updated date according to your preference.
- Save the changes in
app/privacy/page.jsx
.
Privacy Details
- Open the
app/privacy/page.jsx
file. - Edit the file to add your Privacy Policy details.Find the following code:
<div className="privacy-rules">
<h5>1. Lorem, ipsum dolor sit amet consectetur a</h5>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Ad
soluta incidunt, porro, at rerum accusamus laborum nisi ipsum,
praesentium iure eum quo aut ut deserunt tempore. Dolore
consequatur non reprehenderit?
</p>
</div>
- Repeat the
<div>
item as much as possible to add more privacy rules. - Save the changes in
app/privacy/page.jsx
.
After making these changes, the Privacy Policy page title and details will be customized based on your modifications.