import { getContent } from "@/lib/api";

export default async function ContentPage() {
  const content = await getContent();

  return (
    <div className="min-h-screen p-8">
      <div className="max-w-6xl mx-auto">
        <h1 className="text-3xl font-bold mb-6">Content Library</h1>
        {/* Content list component */}
      </div>
    </div>
  );
}
