2024-11-05 06:15:40 +00:00
|
|
|
import Contact from "@/components/main/detail/contact";
|
2024-12-02 13:19:30 +00:00
|
|
|
import { Suspense } from "react";
|
2024-02-19 08:39:35 +00:00
|
|
|
|
|
|
|
|
export default function VisiMisiPage() {
|
2024-12-02 13:19:30 +00:00
|
|
|
return (
|
|
|
|
|
<Suspense>
|
|
|
|
|
<Contact />
|
|
|
|
|
</Suspense>
|
|
|
|
|
);
|
2024-02-19 08:39:35 +00:00
|
|
|
}
|