From f686631e5398b52f8c8a322dc331fdc18cc91653 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 10:19:22 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index f307e4b..5137a06 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -14,7 +14,9 @@ export default function AboutPage() { { name: "Home", id: "/" }, { name: "Features", id: "/features" }, { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Privacy Policy", id: "/privacy-policy" }, + { name: "Terms of Service", id: "/terms" } ]; const navbarProps = { @@ -99,4 +101,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +} -- 2.49.1 From c8206d525da7ec15544c5b9b5983820dc0729020 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 10:19:22 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 63d6c02..f83d343 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -13,7 +13,9 @@ export default function ContactPage() { { name: "Home", id: "/" }, { name: "Features", id: "/features" }, { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Privacy Policy", id: "/privacy-policy" }, + { name: "Terms of Service", id: "/terms" } ]; return ( @@ -97,4 +99,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 0b961ec3fb3c4ec420d65cc69c0f364da1efe5d8 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 10:19:23 +0000 Subject: [PATCH 3/5] Update src/app/features/page.tsx --- src/app/features/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx index 09bb7d0..d8a7e4a 100644 --- a/src/app/features/page.tsx +++ b/src/app/features/page.tsx @@ -15,7 +15,9 @@ export default function FeaturesPage() { { name: "Home", id: "/" }, { name: "Features", id: "/features" }, { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "Contact", id: "/contact" }, + { name: "Privacy Policy", id: "/privacy-policy" }, + { name: "Terms of Service", id: "/terms" } ]; return ( @@ -111,4 +113,4 @@ export default function FeaturesPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 5ef92d40774d1da8ca6e30144142a39c150cbe83 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 10:19:23 +0000 Subject: [PATCH 4/5] Add src/app/privacy-policy/page.tsx --- src/app/privacy-policy/page.tsx | 100 ++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 src/app/privacy-policy/page.tsx diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx new file mode 100644 index 0000000..110d5c0 --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,100 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import LegalSection from "@/components/legal/LegalSection"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Twitter, Linkedin, Github } from 'lucide-react'; + +export default function PrivacyPolicyPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Features", id: "/features" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Privacy Policy", id: "/privacy-policy" }, + { name: "Terms of Service", id: "/terms" } + ]; + + return ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1 From 3ddd58ebe234b9930b7d7062e5eb8360a0b09687 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 10:19:24 +0000 Subject: [PATCH 5/5] Add src/app/terms/page.tsx --- src/app/terms/page.tsx | 104 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 src/app/terms/page.tsx diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx new file mode 100644 index 0000000..ede0d2d --- /dev/null +++ b/src/app/terms/page.tsx @@ -0,0 +1,104 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import LegalSection from "@/components/legal/LegalSection"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Twitter, Linkedin, Github } from 'lucide-react'; + +export default function TermsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Features", id: "/features" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, + { name: "Privacy Policy", id: "/privacy-policy" }, + { name: "Terms of Service", id: "/terms" } + ]; + + return ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1