-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
77 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { Section } from '@/styles/GuidePage'; | ||
|
||
const GuideCategoryPage = () => { | ||
return ( | ||
<> | ||
<Section> | ||
<div className="info-box"> | ||
<h2 className="subtitle">카테고리 정리</h2> | ||
|
||
<h1 className="title"> | ||
변환된 영상들을 | ||
<br /> | ||
<span>나의 편의에 맞게 분류</span>할 수 있어요 | ||
</h1> | ||
</div> | ||
</Section> | ||
</> | ||
); | ||
}; | ||
|
||
export default GuideCategoryPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { Section } from '@/styles/GuidePage'; | ||
|
||
const GuideSearchPage = () => { | ||
return ( | ||
<> | ||
<Section> | ||
<div className="info-box"> | ||
<h2 className="subtitle">검색</h2> | ||
|
||
<h1 className="title"> | ||
<span>키워드 검색</span>을 통해 | ||
<br /> | ||
빠르게 나의 영상들을 찾아요 | ||
</h1> | ||
</div> | ||
</Section> | ||
</> | ||
); | ||
}; | ||
|
||
export default GuideSearchPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { Section } from '@/styles/GuidePage'; | ||
|
||
const GuideSummaryPage = () => { | ||
return ( | ||
<> | ||
<Section> | ||
<div className="info-box"> | ||
<h2 className="subtitle">영상 요약</h2> | ||
|
||
<h1 className="title"> | ||
영상을 텍스트로 변환하고 | ||
<br /> | ||
<span>쉽게 정리</span>할 수 있어요 | ||
</h1> | ||
</div> | ||
</Section> | ||
</> | ||
); | ||
}; | ||
|
||
export default GuideSummaryPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters