import { Save } from "lucide-react"; import { Checkbox, Field, FormActions, FormShell, GhostLink, PageHeader, PrimaryButton, Textarea, } from "@/components/admin/form"; import { saveService } from "@/lib/admin-actions"; import type { ServiceRow } from "@/lib/types"; const ICON_OPTIONS = [ "Globe", "ShoppingCart", "Smartphone", "Code2", "Users", "TrendingUp", "Share2", "Megaphone", "Layers", ]; export function ServiceForm({ service }: { service?: ServiceRow }) { return (
{service && }