You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
268 B
TypeScript

// frontend/app/journey/page.tsx — 여정 페이지 (server component; Topbar 는 layout/Shell)
import "@/styles/journey.css";
import { JourneyClient } from "@/components/journey/JourneyClient";
export default function JourneyPage() {
return <JourneyClient />;
}