import Footer from "@/shared/components/layout/footer"; import { MenuHeader } from "@/shared/components/layout/menu-header"; import { appConfig } from "@/shared/config/app-config"; import { Metadata } from "next"; export const metadata: Metadata = { title: `${appConfig.name} ${appConfig.wilayah}`, description: `Dapatkan berita terbaru dan pengumuman resmi terkait pengelolaan data geospasial ${appConfig.wilayah}. Temukan informasi terkini yang mendukung transparansi dan pengambilan keputusan berbasis lokasi.`, }; export default function NewsLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}
); }