From a8256eb999071f0f83f943cc9aa3968770340fb1 Mon Sep 17 00:00:00 2001 From: Sabda Yagra Date: Mon, 29 Dec 2025 17:22:32 +0700 Subject: [PATCH] feat: page privacy-policy and anti-child-sex-abuse --- app/[locale]/anti-child-sex-abuse/layout.tsx | 14 ++++ app/[locale]/anti-child-sex-abuse/page.tsx | 71 ++++++++++++++++++++ app/[locale]/privacy-policy/layout.tsx | 14 ++++ app/[locale]/privacy-policy/page.tsx | 52 ++++++++++++++ messages/en.json | 28 +++++++- messages/in.json | 28 +++++++- 6 files changed, 205 insertions(+), 2 deletions(-) create mode 100644 app/[locale]/anti-child-sex-abuse/layout.tsx create mode 100644 app/[locale]/anti-child-sex-abuse/page.tsx create mode 100644 app/[locale]/privacy-policy/layout.tsx create mode 100644 app/[locale]/privacy-policy/page.tsx diff --git a/app/[locale]/anti-child-sex-abuse/layout.tsx b/app/[locale]/anti-child-sex-abuse/layout.tsx new file mode 100644 index 00000000..a06bd6d8 --- /dev/null +++ b/app/[locale]/anti-child-sex-abuse/layout.tsx @@ -0,0 +1,14 @@ +import Footer from "@/components/landing-page/footer"; +import Navbar from "@/components/landing-page/navbar"; + +const layout: any = async ({ children }: { children: React.ReactNode }) => { + return ( + <> + + {children} +