| 1 | "use client"; |
| 2 | |
| 3 | import Index from "./components"; |
| 4 | |
| 5 | export default function Page() { |
| 6 | return ( |
| 7 | <div className="space-y-9"> |
| 8 | <div className="flex justify-between"> |
| 9 | <div className="self-start"> |
| 10 | <h1 className="text-3xl font-bold">Discover</h1> |
| 11 | </div> |
| 12 | </div> |
| 13 | <Index /> |
| 14 | </div> |
| 15 | ); |
| 16 | } |