-
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.
Merge pull request #40 from WASSUP-Project/develop
[close #39] 상단 네비게이션바로 이동할 때 로딩 최소화 작업
- Loading branch information
Showing
22 changed files
with
513 additions
and
211 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,5 @@ | ||
import Profile from "@/containers/profile/Profile"; | ||
|
||
export default function ProfilePage() { | ||
return <Profile />; | ||
} |
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
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,115 @@ | ||
.mainContainer_white { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
padding: 0px; | ||
gap: 24px; | ||
margin: 0 auto; | ||
|
||
background: #ffffff; | ||
} | ||
|
||
.loading { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
.mainContainer_gray { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
padding: 0px; | ||
gap: 24px; | ||
margin: 0 auto; | ||
|
||
background: #ededed; | ||
} | ||
|
||
.title { | ||
width: 503px; | ||
height: 149px; | ||
|
||
font-family: 'Inter'; | ||
font-style: normal; | ||
font-weight: 600; | ||
font-size: 64px; | ||
line-height: 72px; | ||
text-align: center; | ||
color: #35414B; | ||
} | ||
|
||
.semiTitle { | ||
width: 503px; | ||
height: 48px; | ||
|
||
font-family: 'Inter'; | ||
font-style: normal; | ||
font-weight: 600; | ||
font-size: 40px; | ||
line-height: 48px; | ||
text-align: center; | ||
color: #35414B; | ||
|
||
} | ||
|
||
.message { | ||
width: 176px; | ||
height: 24px; | ||
|
||
font-family: 'Inter'; | ||
font-style: normal; | ||
font-weight: 400; | ||
font-size: 16px; | ||
line-height: 24px; | ||
text-align: center; | ||
color: #4E5A65; | ||
} | ||
|
||
.content1 { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.content1_1 { | ||
padding: 8rem 4rem 8rem 4rem; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 35px; | ||
} | ||
|
||
.content1_2 { | ||
min-width: 500px; | ||
padding-right: 4rem; | ||
padding-left: 4rem; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 35px; | ||
} | ||
|
||
.content1Title { | ||
width: 315px; | ||
height: 48px; | ||
font-family: 'Inter'; | ||
font-style: normal; | ||
font-weight: 600; | ||
font-size: 40px; | ||
line-height: 48px; | ||
color: #35414B; | ||
} | ||
|
||
.content1Description { | ||
width: 413px; | ||
height: 48px; | ||
font-family: 'Inter'; | ||
font-style: normal; | ||
font-weight: 400; | ||
font-size: 16px; | ||
line-height: 24px; | ||
color: #4E5A65; | ||
} | ||
|
||
.banner { | ||
padding: 8rem; | ||
} |
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,71 @@ | ||
"use client"; | ||
|
||
import React from "react"; | ||
import Spacer from "@/components/Spacer"; | ||
import PositiveButton from "@/components/buttons/PositiveButton"; | ||
import styles from "./About.module.css"; | ||
import Image from "next/image"; | ||
import Link from "next/link"; | ||
|
||
export default function About() { | ||
return ( | ||
<> | ||
<Spacer /> | ||
<div className={styles.mainContainer_white}> | ||
<div className={styles.title}> | ||
스마트 출결 파트너 | ||
<br /> | ||
WASSUP | ||
</div> | ||
<div className={styles.message}>실시간 등하원 안심 메시지</div> | ||
</div> | ||
<Spacer /> | ||
<div className={styles.mainContainer_gray}> | ||
<div className={styles.content1}> | ||
<div className={styles.content1_1}> | ||
<h1 className={styles.content1Title}>스마트한 출결관리</h1> | ||
<p className={styles.content1Description}> | ||
얼굴 인식으로 편하게 출결을 관리하세요. <br /> | ||
안심 등하원 메시지로 자녀의 출결을 확인하세요 | ||
</p> | ||
<Link href="/group"> | ||
<PositiveButton text="그룹 미리보기" /> | ||
</Link> | ||
</div> | ||
<div> | ||
<Image | ||
src="/image.png" | ||
alt="Image of something relevant" | ||
width={500} | ||
height={250} | ||
className={styles.content1_2} | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
<Spacer /> | ||
<div className={styles.mainContainer_white}> | ||
<div className={styles.semiTitle}>쉽고 간편한 기능들</div> | ||
<div> | ||
<Image | ||
src="/image1.png" | ||
alt="Image of something relevant" | ||
width={1300} | ||
height={650} | ||
></Image> | ||
</div> | ||
</div> | ||
<Spacer /> | ||
<div className={styles.mainContainer_gray}> | ||
<div className={styles.banner}> | ||
<Image | ||
src="/image2.png" | ||
alt="Image of something relevant" | ||
width={1000} | ||
height={200} | ||
></Image> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |
Oops, something went wrong.