import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "Site haritası",
  description: "Web sitesindeki tüm sayfalar ve bölümler.",
};

export default function SiteHaritasiLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return children;
}
