"use client";

import { AppstoreOutlined } from "@ant-design/icons";
import { Card } from "antd";

import { CmsSectionTitle } from "@/components/admin/CmsSectionTitle";

export default function DashboardPage() {
  return (
    <Card className="cms-surface-card" styles={{ body: { padding: "24px 28px" } }}>
      <CmsSectionTitle
        icon={<AppstoreOutlined />}
        title="Dashboard"
        description="Use the sidebar to manage posts and categories. This home view can be extended with stats and shortcuts later."
      />
    </Card>
  );
}

