Skip to content
Snippets Groups Projects
page.tsx 347 B
import { PostGweets } from "@/components/post-gweets";

export default async function HomePage() {
  return (
    <div className="main-content px-3 pb-3">
      <div className="lg:col-span-1">
        <PostGweets />
      </div>

      <div className="side-content">
        <div className="flex-col">

        </div>
      </div>
    </div>
  )
}