diff --git a/src/app/page.tsx b/src/app/page.tsx index d565ec1..3438524 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,6 +33,7 @@ export default function LandingPage() { { name: "Dishes", id: "dishes" }, { name: "About", id: "about" }, { name: "Location", id: "location" }, + { name: "Privacy Policy", id: "/privacy-policy" }, ]} button={{ text: "Call Now", href: "tel:+919048888888" }} animateOnLoad={true} @@ -167,6 +168,7 @@ export default function LandingPage() { { label: "Call Us", href: "tel:+919048888888" }, { label: "Get Directions", href: "https://maps.google.com/maps?q=Kubaba+Calicut,VH+Horizon,Puthiyara,Kozhikode" }, { label: "WhatsApp Order", href: "https://wa.me/919048888888" }, + { label: "Privacy Policy", href: "/privacy-policy" }, ], }, { diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx new file mode 100644 index 0000000..9f281f7 --- /dev/null +++ b/src/app/privacy-policy/page.tsx @@ -0,0 +1,192 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import LegalSection from '@/components/legal/LegalSection'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function PrivacyPolicyPage() { + return ( + + + + + + + + ); +}