This commit is contained in:
koreacomp5
2025-10-11 17:30:11 +09:00
parent fa382016c0
commit 0e8eb2e85e
2 changed files with 53 additions and 0 deletions

17
src/app/_page.tsx.bk Normal file
View File

@@ -0,0 +1,17 @@
import Image from "next/image";
import { QuickActions } from "@/app/components/QuickActions";
import { HeroBanner } from "@/app/components/HeroBanner";
import { PostList } from "@/app/components/PostList";
import { PersonalWidgets } from "@/app/components/PersonalWidgets";
export default function Home({ searchParams }: { searchParams?: { sort?: "recent" | "popular" } }) {
const sort = searchParams?.sort ?? "recent";
return (
<div className="">
<HeroBanner />
<QuickActions />
<PostList sort={sort} />
<PersonalWidgets />
</div>
);
}