diff --git a/apps/website/src/app/legal/page.tsx b/apps/website/src/app/legal/page.tsx
new file mode 100644
index 0000000..06947b3
--- /dev/null
+++ b/apps/website/src/app/legal/page.tsx
@@ -0,0 +1,21 @@
+import ContentItem from "@/components/ContentItem/ContentItem";
+import PrivacyPolicy from "@/components/Legal/PrivacyPolicy";
+import Terms from "@/components/Legal/terms";
+
+const Legal = () => {
+ return (
+
+ );
+};
+export default Legal;
\ No newline at end of file
diff --git a/apps/website/src/components/Footer.tsx b/apps/website/src/components/Footer.tsx
index a810bb2..ed1f4c9 100644
--- a/apps/website/src/components/Footer.tsx
+++ b/apps/website/src/components/Footer.tsx
@@ -42,6 +42,7 @@ const Footer = ({ socialLinks, footerIcon }: FooterProps) => {
href="https://docs.lilypad.tech/lilypad/lilypad-testnet/architecture"
title="Architecture"
/>
+ {/* TODO: Uncomment when litepaper is ready */}
{/* <_FooterLink
href="#whitepaper"
title="Whitepaper"
@@ -49,8 +50,9 @@ const Footer = ({ socialLinks, footerIcon }: FooterProps) => {
<_FooterLinksColumn>
<_FooterLinksHeader title="Legal" />
- <_FooterLink href="/privacy-policy" title="Privacy" />
- <_FooterLink href="/privacy-policy#cookies" title="Cookies" />
+ <_FooterLink href="/legal#privacy" title="Privacy Policy" />
+ <_FooterLink href="/legal#terms" title="Terms of Use" />
+ <_FooterLink href="/legal#cookies" title="Cookies" />
diff --git a/apps/website/src/components/Legal/PrivacyPolicy.tsx b/apps/website/src/components/Legal/PrivacyPolicy.tsx
new file mode 100644
index 0000000..249e4b7
--- /dev/null
+++ b/apps/website/src/components/Legal/PrivacyPolicy.tsx
@@ -0,0 +1,137 @@
+import { SectionContainer } from "@lilypad/shared-components";
+import ContentItem from "../ContentItem/ContentItem";
+
+export default function PrivacyPolicy() {
+ return(
+
+
+
+
+
+
+
+ - Cookies: Our website uses basic cookies to improve functionality, track usage patterns, and enhance user experience. You can manage cookie settings in your browser at any time.
+ - Newsletter Subscriptions: When subscribing to our newsletter, we collect your email address to send you updates and information about our services.
+ - Website Analytics: We may use tools to collect anonymized data, such as browser type, time spent on the site, and pages visited.
+ - Our website may contain links to documentation, blogs, and other resources hosted on third-party platforms but managed by Lilypad Network Inc. While we make every effort to ensure the security and privacy of these resources, please be aware that accessing these resources may involve third-party services (e.g., hosting or content delivery networks) with their own privacy practices. Lilypad Network Inc. is not responsible for the privacy practices or policies of these third-party platforms. We encourage users to review the privacy policies of these platforms before interacting with the content.
+
+
+
+
+
+ - To maintain and improve the functionality of our website.
+ - To communicate with you via the newsletter, if subscribed.
+ - To analyze website traffic and user behavior for optimization.
+
+
+
+
+
+
+ - Recognize your preferences when you visit our website.
+ - Analyze website traffic to improve performance and usability.
+
+
+
+
+
+
+
+
+
+ - Managing Cookies: You can configure your browser to refuse cookies or alert you when cookies are being sent.
+ - Unsubscribing from Emails: You can opt out of our newsletter at any time by using the "Unsubscribe" link or contacting us directly.
+
+
+
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/apps/website/src/components/Legal/Terms.tsx b/apps/website/src/components/Legal/Terms.tsx
new file mode 100644
index 0000000..de83cee
--- /dev/null
+++ b/apps/website/src/components/Legal/Terms.tsx
@@ -0,0 +1,378 @@
+import { SectionContainer } from "@lilypad/shared-components";
+import ContentItem from "../ContentItem/ContentItem";
+
+export default function Terms() {
+ return(
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ - Initiate any attacks that violate your cloud service, data-center or other applicable third party service provider’s rules or policies;
+ - Unless as expressly requested by the Company as part of a security or similar challenge, disrupt or initiate any attacks against users of the Lilypad Services or the Testnet;
+ - Disrupt, compromise, or otherwise damage data or property owned by other parties.
+ - Impersonate any person or entity or misrepresent your affiliation with any person or entity;
+ - Access any accounts or data other than your own (or those for which you have explicit, permission from their owners);
+ - Interfere with, or attempt to interfere with, the access of any user, host or network, including, without limitation, sending a virus, overloading, flooding, spamming, creating, encouraging or implementing Sibyl attacks;
+ - Sell or resell Lilypad Services;
+ - Participate in the Testnet from a jurisdiction other than the jurisdiction of your residence (as determined by the identity documentation provided by you); and
+ - Encourage or enable any other individual or entity to do any of the foregoing or otherwise violate the Terms.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ )
+}
\ No newline at end of file