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

export const metadata: Metadata = {
  title: "Omicron Blog - Industry Insights & Updates",
  description:
    "Stay informed with the latest news, trends, and insights in the electrical products industry.",
};

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