From 6d4226789a6387667fafccac359c767679d76a6b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 13:19:20 +0000 Subject: [PATCH 1/7] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index d637501..f83e17f 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -91,8 +91,8 @@ export default function BlogPage() { }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms & Conditions", href: "#" }, + { label: "Privacy Policy", href: "/privacy-policy" }, + { label: "Terms & Conditions", href: "/terms-of-service" }, { label: "Cancellation Policy", href: "#" }, { label: "Accessibility", href: "#" }, { label: "Cookies", href: "#" } @@ -106,4 +106,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 058c994db43b5eff7c25a6aa65ce41887525f762 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 13:19:21 +0000 Subject: [PATCH 2/7] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 360c5c5..f86a31a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1270,4 +1270,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From a9572bca5f63481756db75a1c806cc5194cc951f Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 13:19:21 +0000 Subject: [PATCH 3/7] Update src/app/page.tsx --- src/app/page.tsx | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 13c247a..049b4c2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,7 +10,8 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { Cloud, Droplet, Heart, Home, Lock, MessageSquare, Sparkles, Star, Tv, UtensilsCrossed, Wifi } from "lucide-react"; +import LegalSection from '@/components/legal/LegalSection'; +import { Cloud, Droplet, Heart, Home, Lock, Mail, MessageSquare, Sparkles, Star, Tv, UtensilsCrossed, Wifi } from "lucide-react"; export default function LandingPage() { return ( @@ -215,6 +216,25 @@ export default function LandingPage() { /> +
+ +
+
); -} \ No newline at end of file +} -- 2.49.1 From 2e55a30698154dafa94a4130121ee0c8abd393d8 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 13:19:22 +0000 Subject: [PATCH 4/7] Add src/app/privacy-policy/page.tsx --- src/app/privacy-policy/page.tsx | 149 ++++++++++++++++++++++++++++++++ 1 file changed, 149 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..d37a281 --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,149 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import LegalSection from '@/components/legal/LegalSection'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function PrivacyPolicyPage() { + return ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1 From d19ad6cdb828cc1f88079e205da1457d9ebceeaf Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 13:19:23 +0000 Subject: [PATCH 5/7] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 8b0ea17..1ec8985 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -126,8 +126,8 @@ export default function ProductPage({ params }: ProductPageProps) { }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms & Conditions", href: "#" }, + { label: "Privacy Policy", href: "/privacy-policy" }, + { label: "Terms & Conditions", href: "/terms-of-service" }, { label: "Cancellation Policy", href: "#" }, { label: "Accessibility", href: "#" }, { label: "Cookies", href: "#" } @@ -211,8 +211,8 @@ export default function ProductPage({ params }: ProductPageProps) { }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms & Conditions", href: "#" }, + { label: "Privacy Policy", href: "/privacy-policy" }, + { label: "Terms & Conditions", href: "/terms-of-service" }, { label: "Cancellation Policy", href: "#" }, { label: "Accessibility", href: "#" }, { label: "Cookies", href: "#" } @@ -320,8 +320,8 @@ export default function ProductPage({ params }: ProductPageProps) { }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms & Conditions", href: "#" }, + { label: "Privacy Policy", href: "/privacy-policy" }, + { label: "Terms & Conditions", href: "/terms-of-service" }, { label: "Cancellation Policy", href: "#" }, { label: "Accessibility", href: "#" }, { label: "Cookies", href: "#" } @@ -335,4 +335,4 @@ export default function ProductPage({ params }: ProductPageProps) { ); -} \ No newline at end of file +} -- 2.49.1 From 165e2136d0a551073ca58d879a7d51f946c534dc Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 13:19:24 +0000 Subject: [PATCH 6/7] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index c26a60a..171ed63 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -79,8 +79,8 @@ export default function ShopPage() { }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms & Conditions", href: "#" }, + { label: "Privacy Policy", href: "/privacy-policy" }, + { label: "Terms & Conditions", href: "/terms-of-service" }, { label: "Cancellation Policy", href: "#" }, { label: "Accessibility", href: "#" }, { label: "Cookies", href: "#" } @@ -163,8 +163,8 @@ export default function ShopPage() { }, { title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms & Conditions", href: "#" }, + { label: "Privacy Policy", href: "/privacy-policy" }, + { label: "Terms & Conditions", href: "/terms-of-service" }, { label: "Cancellation Policy", href: "#" }, { label: "Accessibility", href: "#" }, { label: "Cookies", href: "#" } @@ -178,4 +178,4 @@ export default function ShopPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 9f3d9a6f90c304f553278d4c9df6c5542fa1e70e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 13:19:24 +0000 Subject: [PATCH 7/7] Add src/app/terms-of-service/page.tsx --- src/app/terms-of-service/page.tsx | 162 ++++++++++++++++++++++++++++++ 1 file changed, 162 insertions(+) create mode 100644 src/app/terms-of-service/page.tsx diff --git a/src/app/terms-of-service/page.tsx b/src/app/terms-of-service/page.tsx new file mode 100644 index 0000000..1ada1e0 --- /dev/null +++ b/src/app/terms-of-service/page.tsx @@ -0,0 +1,162 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import LegalSection from '@/components/legal/LegalSection'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; + +export default function TermsOfServicePage() { + return ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1