diff --git a/src/app/page.tsx b/src/app/page.tsx index 2190533..35da7e7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -268,8 +268,8 @@ export default function LandingPage() { }, { items: [ - { label: "About Us", href: "#why-us" }, - { label: "Reviews", href: "#reviews" }, + { label: "About Us", href: "#about" }, + { label: "Reviews", href: "#testimonials" }, { label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" } ] @@ -284,8 +284,8 @@ export default function LandingPage() { }, { items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, + { label: "Privacy Policy", href: "/privacy" }, + { label: "Terms of Service", href: "/terms" }, { label: "Accessibility", href: "#" }, { label: "Sitemap", href: "#" } ] diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx new file mode 100644 index 0000000..71fa604 --- /dev/null +++ b/src/app/privacy/page.tsx @@ -0,0 +1,145 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import LegalSection from "@/components/legal/LegalSection"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; + +export default function PrivacyPage() { + return ( + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index ee8d361..8e83b2b 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f6f0e9; - --card: #efe7dd; - --foreground: #2b180a; - --primary-cta: #2b180a; + --background: #f5f5f5; + --card: #ffffff; + --foreground: #1c1c1c; + --primary-cta: #ff6207; --primary-cta-text: #f6f0e9; - --secondary-cta: #efe7dd; + --secondary-cta: #ffffff; --secondary-cta-text: #2b180a; - --accent: #94877c; - --background-accent: #afa094; + --accent: #ffce93; + --background-accent: #e8cfa8; /* 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..6fe5cca --- /dev/null +++ b/src/app/terms/page.tsx @@ -0,0 +1,161 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import LegalSection from "@/components/legal/LegalSection"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; + +export default function TermsPage() { + return ( + + + + + + + + ); +} \ No newline at end of file