import type { Metadata } from "next";

export const metadata: Metadata = {
    title: "Products",
    description: "Browse our premium range of iRoof ASA roofing sheets. Available in multiple colors and lengths, offering superior heat resistance and durability.",
    openGraph: {
        title: "Products | iRoof",
        description: "Browse our premium range of iRoof ASA roofing sheets. Available in multiple colors and lengths, offering superior heat resistance and durability.",
        url: "https://iroof.lk/products"
    }
};

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