Skip to content

Commit

Permalink
feat: pull받고 고객센터 페이지추가
Browse files Browse the repository at this point in the history
  • Loading branch information
dbwoflaqnzo3 committed Feb 18, 2025
1 parent 7962d1b commit b147fff
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 6 deletions.
10 changes: 10 additions & 0 deletions student/app/mainPage/helpPage/helpPage.module.css
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); }
43 changes: 43 additions & 0 deletions student/app/mainPage/helpPage/page.js
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>
)
}
6 changes: 0 additions & 6 deletions student/app/mainPage/studentService/page.js

This file was deleted.

9 changes: 9 additions & 0 deletions student/public/assets/images/icons/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b147fff

Please sign in to comment.