1 parent 1f457d1 commit f66432dCopy full SHA for f66432d
3 files changed
src/lib/login-dialog-trigger.tsx …in)/_components/login-dialog-trigger.tsxsrc/lib/login-dialog-trigger.tsx renamed to src/app/(main)/_components/login-dialog-trigger.tsx
src/app/(main)/_components/root-input.tsx
@@ -2,7 +2,7 @@
2
3
import { Button } from "@/components/ui/button";
4
import { Input } from "@/components/ui/input";
5
-import LoginDialogTrigger from "@/lib/login-dialog-trigger";
+import LoginDialogTrigger from "@/app/(main)/_components/login-dialog-trigger";
6
import { useUserStore } from "@/providers/user-store-provider";
7
import { useRootInputStore } from "@/stores/root-input-store";
8
import { ArrowRight, Loader } from "lucide-react";
src/app/(main)/page.tsx
@@ -4,11 +4,8 @@ import HeroSection from "./_components/hero-section";
export default async function Home() {
return (
<>
- {/* HeroSection 먼저 렌더링 */}
-
9
<HeroSection />
10
<TutorialSection />
11
- {/* GallerySection은 준비되면 바로 렌더링 */}
12
</>
13
);
14
}
0 commit comments