import { Metadata } from "next";

export const metadata: Metadata = {
  title: "Blog | Diaspora Property Magazine",
  description:
    "Expert insights on Kenyan real estate investment for the diaspora. Market analysis, investment guides, legal tips, and property spotlights.",
  openGraph: {
    title: "Blog | Diaspora Property Magazine",
    description:
      "Expert insights on Kenyan real estate investment for the diaspora. Market analysis, investment guides, legal tips, and property spotlights.",
    type: "website",
  },
  alternates: {
    canonical: "/blog",
  },
};

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