From 10cd76b464ecbcc82de96e6f676ed4209d7417a2 Mon Sep 17 00:00:00 2001 From: LuaanNguyen Date: Sun, 19 May 2024 15:24:28 -0700 Subject: [PATCH 1/4] Updated Footer, Homepage, and added Brand --- app/brand/page.jsx | 131 +++++++++++++++++++ app/components/Footer.js | 44 ++++--- app/components/Home/BlackHorizontalLine.jsx | 7 + app/components/Home/Hero.js | 40 +++--- app/components/Home/LeaderBoardCheckOut.js | 13 ++ app/components/Home/Partners.js | 80 ++++++----- app/components/Home/ResearchProjectAgents.js | 12 +- app/components/Home/ResearchProjectBias.js | 11 +- app/components/NavBar.js | 38 ++++-- app/globals.css | 2 +- app/layout.js | 28 ++-- app/page.js | 18 ++- public/HomePagePics/manifesto.png | Bin 0 -> 536438 bytes 13 files changed, 318 insertions(+), 106 deletions(-) create mode 100644 app/brand/page.jsx create mode 100644 app/components/Home/BlackHorizontalLine.jsx create mode 100644 app/components/Home/LeaderBoardCheckOut.js create mode 100644 public/HomePagePics/manifesto.png diff --git a/app/brand/page.jsx b/app/brand/page.jsx new file mode 100644 index 0000000..3311a82 --- /dev/null +++ b/app/brand/page.jsx @@ -0,0 +1,131 @@ +import Image from "next/image"; +import whitelogo from "../assets/whitelogo.svg"; + +function PrivacyPolicy() { + // Get the current date + const currentDate = new Date(); + + return ( +
+
+ {/* Ethical Spectacle Research */} +

Privacy Policy

+

Updated on {Date()}

+
+
+ +
+
+ ); +} + +export default PrivacyPolicy; + +import React from "react"; + +const PrivacyPolicyText = () => { + return ( +
+

+ At Ethical Spectacle Research, we take your privacy seriously. This + privacy policy explains what personal data we collect, how we use and + protect it, and the rights you have concerning your personal + information. +

+ +

Information We Collect

+

+ We may collect personal information directly from you, such as your + name, email address, and other contact details when you interact with + us. We may also collect usage data automatically through technologies + like cookies when you visit our website. +

+ +

+ How We Use Your Information +

+

+ We use the information we collect for legitimate business purposes, such + as: +

+ +

+ We will only process your personal data if we have a lawful basis for + doing so, such as your consent, contractual necessity, or our legitimate + interests. +

+ +

+ Data Sharing and Retention +

+

+ We do not sell your personal data to third parties. We may share your + information with trusted service providers who perform services on our + behalf, under strict confidentiality obligations. We retain your data + for only as long as necessary for our legitimate business purposes. +

+ +

Data Security

+

+ We implement reasonable technical, administrative, and physical + safeguards to protect your personal information from unauthorized + access, use, or disclosure. However, no method of transmission over the + internet or data storage is 100% secure. +

+ +

Your Rights

+

+ You may have certain rights regarding your personal data, such as the + rights of access, rectification, erasure, restriction of processing, + data portability, and objection to processing. Contact us to exercise + these rights. +

+ +

+ Changes to this Policy +

+

+ We may update this privacy policy from time to time by posting a new + version on our website. You should check this page occasionally to + ensure you agree with any changes. +

+ +

Contact Us

+

+ If you have any questions about this privacy policy or our data + practices, please contact us at maximus@ethicalspectacle.com. +

+ +

+ By using our website and services, you consent to the terms of this + privacy policy. +

+
+ ); +}; diff --git a/app/components/Footer.js b/app/components/Footer.js index fd2331f..13890e6 100644 --- a/app/components/Footer.js +++ b/app/components/Footer.js @@ -8,9 +8,9 @@ import Link from "next/link"; export default function Footer() { return ( -