|
1
|
"use client"; |
|
2
|
|
|
3
|
import { Index } from "./components"; |
|
4
|
|
|
5
|
export default function Page() { |
|
6
|
return ( |
|
7
|
<div className="prose prose-sm prose-invert max-w-none"> |
|
8
|
<div className="grid grid-cols-1 gap-6 lg:grid-cols-3"> |
|
9
|
<Index /> |
|
10
|
</div> |
|
11
|
</div> |
|
12
|
); |
|
13
|
} |