RealStatic
Nextjs
License Page

Privacy Policy

To customize the License title and details, follow these steps:

Page Title

  1. Open the app/license/page.jsx file.

  2. Locate the code block containing the <PageHero> component.

  3. Edit the <h2> tag to customize the page title. Use the provided code as a reference:

 <h2>License</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.

  1. Save the changes in app/license/page.jsx.

License Details

  1. Open the app/license/page.jsx file.
  2. 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>
  1. Repeat the <div> item as much as possible to add more license rules.
  2. Save the changes in app/license/page.jsx.

After making these changes, the Privacy Policy page title and details will be customized based on your modifications.