import { ReactNode } from "react";
import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "Products",
  description:
    "Browse all products at Outlet Plus online pharmacy. Find medicines, health products, skincare, vitamins, and wellness items with fast delivery in Saudi Arabia.",
  keywords: [
    "products",
    "medicines",
    "health products",
    "skincare",
    "vitamins",
    "منتجات",
    "أدوية",
    "صيدلية",
  ],
};

type Props = {
  children: ReactNode;
};

export default function ProductsLayout({ children }: Props) {
  return <>{children}</>;
}

