We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2477d22 commit fa7f706Copy full SHA for fa7f706
1 file changed
src/app/wordcloud/page.tsx
@@ -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