import React from 'react';
import { AppShell } from '@/components/common/AppShell';

export const metadata = {
  title: 'Dashboard | SIMKATMAWA',
  description: 'Panel Pengguna Portal SIMKATMAWA',
};

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