import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "Brands",
  description:
    "Browse all pharmacy and health brands available at Outlet Plus. Find trusted brands for medicines, skincare, wellness, and more.",
  keywords: ["brands", "pharmacy brands", "health brands", "medicine brands", "العلامات التجارية"],
};

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