diff --git a/src/routes/onboard/index.tsx b/src/routes/onboard/index.tsx index 354a296..2de5f0d 100644 --- a/src/routes/onboard/index.tsx +++ b/src/routes/onboard/index.tsx @@ -1,4 +1,5 @@ import { Button } from "@/components/common/Button"; +import { Header } from "@/components/common/Header"; import Image from "@/components/common/Image"; import { createFileRoute } from "@tanstack/react-router"; import { useRef } from "react"; @@ -23,30 +24,47 @@ function OnBoardPage() { } }; + const handleNextClick = () => { + console.log("Next button clicked"); + }; + return ( -
-
- Profile Image -
-

낭은영

-

14기 Product Design

+
+
+ 다음 + + } + /> +
+
+ Profile Image +
+

낭은영

+

14기 Product Design

+
+ +
- - -
+
); }