2025-02-05 07:54:24 +07:00
|
|
|
import { Heading } from "./_components/heading";
|
|
|
|
|
|
|
|
import { AgentList } from "./_components/agent-list";
|
|
|
|
import { Footer } from "@/components/footer";
|
|
|
|
import { Suspense } from "react";
|
2025-02-09 23:53:08 +07:00
|
|
|
import { Header } from "@/components/header";
|
2025-02-05 07:54:24 +07:00
|
|
|
|
|
|
|
export default function Explore() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<div className="relative">
|
2025-02-09 23:53:08 +07:00
|
|
|
<Header />
|
|
|
|
<Heading />
|
2025-02-05 07:54:24 +07:00
|
|
|
<Suspense>
|
|
|
|
<AgentList />
|
|
|
|
</Suspense>
|
2025-02-09 23:53:08 +07:00
|
|
|
<Footer />
|
2025-02-05 07:54:24 +07:00
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|