import Link from "next/link"; import { Plus, Edit, ExternalLink } from "lucide-react"; import { PageHeader } from "@/components/admin/form"; import { DeleteButton } from "@/components/admin/delete-button"; import { listProjects } from "@/lib/data"; import { deleteProject } from "@/lib/admin-actions"; export default async function ProjectsAdminPage() { const projects = await listProjects(); return (
); }