import React from "react";
import { Metadata } from "next";

export const metadata: Metadata = {
  title: "My Orders",
  description: "Track and view your recent purchases and order history.",
  robots: {
    index: false,
    follow: false,
  },
};

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