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

export const metadata: Metadata = {
  title: "Offers",
  description:
    "Discover exclusive offers and deals at Outlet Plus. Save on medicines, health products, skincare, and wellness items. Best prices in Saudi Arabia.",
  keywords: ["offers", "deals", "discounts", "pharmacy offers", "عروض", "تخفيضات", "صيدلية"],
};

type Props = {
  children: ReactNode;
};

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

