import { AdminPageHeader } from "@/components/admin/page-header";
import { TestimonialForm } from "@/components/admin/testimonial-form";

export default function NewTestimonialPage() {
  return (
    <>
      <AdminPageHeader title="New Testimonial" description="Add a new customer testimonial." />
      <TestimonialForm isNew />
    </>
  );
}
