"use client";

import ComponentCard from "@/src/components/admin/common/ComponentCard";
import PageProtection from "@/src/components/admin/common/PageProtection";
import BlogList from "./blog-list";

export default function BlogListPage() {
  return (
    <div className="space-y-6">
      <PageProtection pageSlug="blog.blog-list">
        <ComponentCard
          title="Blog List"
          desc="View all blogs, manage their status, and perform actions like edit, preview, or delete."
        >
          <BlogList />
        </ComponentCard>
      </PageProtection>
    </div>
  );
}
