33 lines
857 B
TypeScript
33 lines
857 B
TypeScript
import Testimonials from '@/components/blocks/testimonials/testimonials';
|
|
import Testimonials2 from '@/components/blocks/testimonials/testimonials-2';
|
|
import Testimonials4 from '@/components/blocks/testimonials/testimonials-4';
|
|
import Testimonials5 from '@/components/blocks/testimonials/testimonials-5';
|
|
import Testimonials6 from '@/components/blocks/testimonials/testimonials-6';
|
|
|
|
interface TestimonialsPageProps {
|
|
params: Promise<{ locale: string }>;
|
|
}
|
|
|
|
/**
|
|
* https://nsui.irung.me/testimonials
|
|
*/
|
|
export default async function TestimonialsPage(props: TestimonialsPageProps) {
|
|
const params = await props.params;
|
|
|
|
return (
|
|
<>
|
|
<div className="mt-8 flex flex-col gap-16 pb-16">
|
|
<Testimonials />
|
|
|
|
<Testimonials2 />
|
|
|
|
<Testimonials4 />
|
|
|
|
<Testimonials5 />
|
|
|
|
<Testimonials6 />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|