diff --git a/app.js b/app.js index 8672da1..15f0db3 100644 --- a/app.js +++ b/app.js @@ -353,11 +353,6 @@ app.get('/contributors', (req, res) => { }); // Terms route -app.get('/terms', (req, res) => { - res.render('terms', { - activeLink: 'terms', // You can customize this based on your layout - }); -}); app.get('/terms-page', (req, res) => { res.render('terms-page', { @@ -793,4 +788,4 @@ app.use((err, req, res, next) => { const PORT = process.env.PORT || 8080; app.listen(PORT, () => { console.log(`Server is running on port ${PORT}`); -}); +}); \ No newline at end of file diff --git a/views/partials/footer.ejs b/views/partials/footer.ejs index f98e49f..9dfbf97 100644 --- a/views/partials/footer.ejs +++ b/views/partials/footer.ejs @@ -18,7 +18,7 @@
  • About Us
  • Our Team
  • Privacy Policy
  • - +
  • Terms of Service
  • Our Contributors
  • diff --git a/views/privacy-policy.ejs b/views/privacy-policy.ejs index 9998ce2..f596d50 100644 --- a/views/privacy-policy.ejs +++ b/views/privacy-policy.ejs @@ -1,273 +1,151 @@ - + - - - - Privacy Policy - + <%- include('partials/head') %> + + + -
    -
    - -
    - -
    -

    Welcome to Scruter's Privacy Policy

    -

    This policy outlines how we handle your personal data and protect your privacy when you use our website and services.

    -
    - -
    -

    Information We Collect

    -

    We collect the following types of information:

    - -
    - -
    -

    How We Use Your Information

    -

    Your information is used for the following purposes:

    - -
    - -
    -

    How We Protect Your Information

    -

    We take data protection seriously and use industry-standard security measures to protect your information. However, no method of transmission over the internet is 100% secure, and we cannot guarantee absolute security.

    -
    - -
    -

    Sharing Your Information

    -

    We do not share your personal information with third parties, except in the following circumstances:

    - -
    - -
    -

    Cookies

    -

    Our website uses cookies to enhance your experience and collect information about your usage patterns. You can choose to disable cookies through your browser settings, but this may affect your ability to use certain features of the site.

    -
    - -
    -

    Changes to This Policy

    -

    We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page. It is recommended to review this policy periodically for any updates.

    -
    - -
    -

    Contact Us

    -

    If you have any questions or concerns about this Privacy Policy, please contact us at:

    - -
    - - Back to Home +
    + <%- include('partials/navbar') %> + +
    +

    Privacy Policy

    + +

    Welcome to Scruter's Privacy Policy. This policy outlines how we handle your personal data and protect your privacy when you use our website and services.

    + +

    Information We Collect

    +

    We collect the following types of information:

    + + +

    How We Use Your Information

    +

    Your information is used for the following purposes:

    + + +

    How We Protect Your Information

    +

    We take data protection seriously and use industry-standard security measures to protect your information. However, no method of transmission over the internet is 100% secure, and we cannot guarantee absolute security.

    + +

    Sharing Your Information

    +

    We do not share your personal information with third parties, except in the following circumstances:

    + + +

    Cookies

    +

    Our website uses cookies to enhance your experience and collect information about your usage patterns. You can choose to disable cookies through your browser settings, but this may affect your ability to use certain features of the site.

    + +

    Changes to This Policy

    +

    We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page. It is recommended to review this policy periodically for any updates.

    + +

    Contact Us

    +

    If you have any questions or concerns about this Privacy Policy, please contact us at:

    +
    - + <%- include('partials/footer') %> + <%- include('partials/bottom_nav') %> - diff --git a/views/terms-page.ejs b/views/terms-page.ejs index 2d85061..540ce61 100644 --- a/views/terms-page.ejs +++ b/views/terms-page.ejs @@ -6,15 +6,12 @@ - - - -
    -

    <%= heading %>

    -

    <%= intro %>

    - -
    -

    Acceptance of Terms

    -

    <%= termsContent %>

    -
    - -
    -

    Changes to the Terms

    -

    <%= changesContent %>

    -
    - -
    -

    Use of Website

    -

    <%= useOfWebsite %>

    -
    - -
    -

    Prohibited Use

    -

    You are prohibited from using the site or its content:

    -
      - <% prohibitedUses.forEach(function(use) { %> -
    • <%= use %>
    • - <% }) %> -
    -
    - -
    -

    Limitation of Liability

    -

    <%= liabilityContent %>

    -
    - -
    -

    Governing Law

    -

    <%= governingLaw %>

    -
    - -
    -

    Contact Us

    -

    If you have any questions about these terms and conditions, you can contact us at:

    -
      -
    • Email: <%= email %>
    • -
    • Phone: <%= phone %>
    • -
    • Address: <%= address %>
    • -
    -
    - - Back to Home -
    - - -