testimonial.tsx
testimonial-two.tsx
testimonial-card.tsx
import TestimonialTwo from "@/components/testimonial-two";

export default function Page() {
  return (
    <div className="container mx-auto ">
      <div className="min-h-screen w-full flex items-center justify-center">
        <TestimonialTwo />
      </div>
    </div>
  );
}
testimonial.tsx
testimonial-three.tsx
import TestimonialThree from "@/components/testimonial-three";

export default function Page() {
  return (
    <div className="container mx-auto ">
      <div className="w-full flex items-center justify-center">
        <TestimonialThree />
      </div>
    </div>
  );
}