forked from JustOneBite/job-front
-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
7962d1b
commit b147fff
Showing
4 changed files
with
62 additions
and
6 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.logo { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
width: 100%; | ||
padding-top: 50px; | ||
padding-bottom: 50px; | ||
} | ||
|
||
.error { color: var(--red-3); } |
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,43 @@ | ||
'use client' | ||
import styles from "./helpPage.module.css"; | ||
|
||
import { PageLayout } from '@/app/page.js'; | ||
import SizedBox from "@/app/widgets/structure/SizedBox"; | ||
import { Grid, Column, Row } from "@/app/widgets/structure/Grid"; | ||
import { Button1, Button5 } from "@/app/components/ui/buttons/Regular"; | ||
import TextField from "@/app/components/ui/TextField"; | ||
import { DropdownButton2 } from "@/app/components/ui/buttons/Dropdown"; | ||
|
||
export default function studentService(){ | ||
return( | ||
<PageLayout> | ||
<h1>고객센터</h1> | ||
<SizedBox height={32}/> | ||
<Grid column={1} gap="20px" style={{ textAlign: "center", padding: "20px" }}> | ||
|
||
{/* 검색 & 필터 Row */} | ||
<Row justifyContent="space-between" gap="15px"> | ||
|
||
{/* 카테고리 선택 */} | ||
{/* <select> | ||
<option>카테고리</option> | ||
</select> */} | ||
|
||
{/* 정렬 선택 */} | ||
{/* <select> | ||
<option>최신순</option> | ||
</select> */} | ||
|
||
<Row justifyContent="center" gap="15px"> | ||
<DropdownButton2>최신순</DropdownButton2> | ||
</Row> | ||
<Row gap="15px"> | ||
<TextField placeholder={true} width={360} ></TextField> | ||
<SizedBox width={50} height={32}/> | ||
<Button5 width={126} text={`찾기`} >찾기</Button5> | ||
</Row> | ||
</Row> | ||
</Grid> | ||
</PageLayout> | ||
) | ||
} |
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.