@@ -83,16 +83,16 @@ export default function LandingPage() {
diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx
new file mode 100644
index 0000000..1a87e28
--- /dev/null
+++ b/src/app/privacy/page.tsx
@@ -0,0 +1,120 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import LegalSection from '@/components/legal/LegalSection';
+import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
+
+export default function PrivacyPage() {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index 86ed82b..6169d7c 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
- /* --background: #f7f6f7;;
- --card: #ffffff;;
- --foreground: #0c1325;;
- --primary-cta: #0798ff;;
- --secondary-cta: #ffffff;;
- --accent: #93c7ff;;
- --background-accent: #a8cde8;; */
+ /* --background: #ffffff;;
+ --card: #f9f9f9;;
+ --foreground: #0f172a;;
+ --primary-cta: #1e3a8a;;
+ --secondary-cta: #e2e8f0;;
+ --accent: #64748b;;
+ --background-accent: #cbd5e1;; */
- --background: #f7f6f7;;
- --card: #ffffff;;
- --foreground: #0c1325;;
- --primary-cta: #0798ff;;
+ --background: #ffffff;;
+ --card: #f9f9f9;;
+ --foreground: #0f172a;;
+ --primary-cta: #1e3a8a;;
--primary-cta-text: #f7f6f7;;
- --secondary-cta: #ffffff;;
+ --secondary-cta: #e2e8f0;;
--secondary-cta-text: #0c1325;;
- --accent: #93c7ff;;
- --background-accent: #a8cde8;;
+ --accent: #64748b;;
+ --background-accent: #cbd5e1;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx
new file mode 100644
index 0000000..8b39b4e
--- /dev/null
+++ b/src/app/terms/page.tsx
@@ -0,0 +1,128 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import LegalSection from '@/components/legal/LegalSection';
+import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
+
+export default function TermsPage() {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}