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