Skip to content

Commit fa7f706

Browse files
committed
Word cloud 페이지 생성 (src/app/wordcloud/page.tsx)
1 parent 2477d22 commit fa7f706

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

src/app/wordcloud/page.tsx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import { Container } from "@/components/Container";
2+
import { WordCloud } from "@/components/WordCloud";
3+
4+
export const metadata = {
5+
title: "워드 클라우드",
6+
description: "블로그 글의 제목, 설명, 태그에서 추출한 핵심 키워드 시각화.",
7+
};
8+
9+
export default function WordCloudPage() {
10+
return (
11+
<main className="py-10">
12+
<Container>
13+
<div className="space-y-2 mb-8">
14+
<h1 className="text-2xl font-semibold tracking-tight">워드 클라우드</h1>
15+
<p className="text-sm leading-6 text-black/70 dark:text-white/70">
16+
블로그 글의 제목·설명·태그에서 추출한 핵심 키워드입니다.
17+
</p>
18+
</div>
19+
<WordCloud />
20+
</Container>
21+
</main>
22+
);
23+
}

0 commit comments

Comments
 (0)