import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "Privacy Policy",
  description:
    "Read Outlet Plus privacy policy. Learn how we collect, use, and protect your personal information when you shop at our online pharmacy.",
  keywords: ["privacy policy", "data protection", "personal information", "سياسة الخصوصية"],
};

export default function PrivacyPolicyLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return <>{children}</>;
}
