Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion frontend/app/(non-login)/login/_components/LeftSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ export default function LeftSection() {
return (
<div className={styles.leftSection}>
<div className={styles.textWrapper}>
<h1>CLASSLOG,</h1>
<Image
src={IMAGES.logo4}
alt="ClassLog Logo"
width={500}
height={120}
className={styles.logo}
/>
<h2>๋‹น์‹ ์˜ ๊ฐ•์˜๋ฅผ ๋” ์Šค๋งˆํŠธํ•˜๊ฒŒ</h2>

<p>์ˆ˜์—… ๋…น์Œ, ์‹ค์‹œ๊ฐ„ ์†Œํ†ต, AI ๊ธฐ๋ฐ˜ ํ€ด์ฆˆ ์ƒ์„ฑ์„ ํ†ตํ•ด</p>
Expand Down
17 changes: 13 additions & 4 deletions frontend/app/(non-login)/login/page.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,19 @@
margin: $spacing-3xl 0px;
}

h1 {
font-size: clamp(60px, 7.5vw, 100px);
font-weight: bold;
font-family: $font-logo;
.logo {
width: clamp(400px, 7.5vw, 300px);
height: auto;
object-fit: contain;
transition: $transition-default;

@include respond-to(lg) {
width: clamp(300px, 7.5vw, 200px);
}

@include respond-to(md) {
width: clamp(200px, 7.5vw, 100px);
}
}

h2 {
Expand Down
5 changes: 4 additions & 1 deletion frontend/app/(non-login)/signup/page.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
display: flex;
gap: $spacing-md;
width: 100%;
@media (max-width: 300px) {
flex-direction: column;
}
}

.teacherButton,
Expand Down Expand Up @@ -57,7 +60,7 @@
display: flex;
flex-direction: row;
gap: $spacing-md;
align-items: first baseline;
align-items: center;
& > :first-child {
flex: 3;
}
Expand Down
3 changes: 3 additions & 0 deletions frontend/components/Input/BasicInput/BasicInput.module.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
.wrapper {
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

.label {
Expand Down
2 changes: 2 additions & 0 deletions frontend/constants/images.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import logo1 from "@/public/images/logo1.png";
import logo2 from "@/public/images/logo2.png";
import logo3 from "@/public/images/logo3.png";
import logo4 from "@/public/images/logo4.png";
import introImage from "@/public/images/intro_image.png";
import qrCode from "@/public/images/QRcode.png";
import kakaoLogo from "@/public/images/kakao_logo.png";
Expand All @@ -25,6 +26,7 @@ export const IMAGES = {
logo1,
logo2,
logo3,
logo4,
introImage,
qrCode,
kakaoLogo,
Expand Down
Binary file added frontend/public/images/logo4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.