Newer
Older

Yusuf Akgül
committed
import { CreateGweet } from "@/components/create-gweet/components/create-gweet"
import { GlobalLayout } from "@/components/global-layout"
import { Gweets } from "@/components/gweets/components/gweets"
import ScrollToTop from "@/components/scroll-to-top"
import { Trends } from "@/components/trends/components/trends"
import { Card } from "@/components/ui/card"
export default async function HomePage() {

Yusuf Akgül
committed
return (
<GlobalLayout
mainContent={
<>
<div className="fixed top-30 z-40">
<ScrollToTop />
</div>
<div className="w-full space-y-6 flex flex-col">

Yusuf Akgül
committed
<CreateGweet />
<Gweets />
</div>
</>
}
sideContent={
<Card className="p-5 bg-secondary">
<Trends />
</Card>
}

Yusuf Akgül
committed
/>
)