import type { Metadata } from "next";

export const metadata: Metadata = {
    title: "News",
    description: "Read the latest news, updates, and insights from iRoof. Stay informed about roofing technologies, sustainability, and industry events in Sri Lanka.",
    openGraph: {
        title: "News | iRoof",
        description: "Read the latest news, updates, and insights from iRoof. Stay informed about roofing technologies, sustainability, and industry events in Sri Lanka.",
        url: "https://iroof.lk/news"
    }
};

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