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 +} 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 +} 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 +} 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 ( + + + +
+ +
+ + +
+ ); +} 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 +} 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 +} 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 ( + + + +
+ +
+ + +
+ ); +}