import CommonTitle from "@/app/components/CommonTitle";
import DashboardContent from "./components/DashboardContent";

export default function DashboardPage() {
  return (
    <>
      <div className="mb-4">
        <CommonTitle title="Dashboard" description="Real-time sales, profit, and branch performance" />
      </div>
      <DashboardContent />
    </>
  );
}
