From 9fc41f16d26b3d8d4dea76f6077bac4422e78054 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 13 Jun 2026 08:02:14 +0000 Subject: [PATCH] Add src/app/privacy/page.tsx --- src/app/privacy/page.tsx | 114 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 src/app/privacy/page.tsx diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx new file mode 100644 index 0000000..3464cf9 --- /dev/null +++ b/src/app/privacy/page.tsx @@ -0,0 +1,114 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import LegalSection from '@/components/legal/LegalSection'; +import { Award, Facebook, Instagram, MapPin, Rocket, Star, Twitter, Utensils } from "lucide-react"; + +export default function PrivacyPage() { + const navItems = [ + { name: "Home", id: "#hero" }, + { name: "Menu", id: "#menu" }, + { name: "Features", id: "#features" }, + { name: "Pricing", id: "#pricing" }, + { name: "Reviews", id: "#testimonials" }, + { name: "FAQ", id: "#faq" }, + { name: "Contact", id: "#contact" }, + { name: "Privacy", id: "/privacy" }, + ]; + + return ( + + + + +
+ +
+ + +
+
+ ); +}