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
2 changes: 1 addition & 1 deletion src/app/(page)/signin/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import SigninView from '@/views/signin';
import SigninView from '@/pageContainer/signin';

export default function SigninPage() {
return <SigninView />;
Expand Down
2 changes: 1 addition & 1 deletion src/app/(page)/signup/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import SignupView from '@/views/signup';
import SignupView from '@/pageContainer/signup';

export default function SignupPage() {
return <SignupView />;
Expand Down
2 changes: 1 addition & 1 deletion src/assets/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export { default as Logo } from './svg/Logo';
export { default as Google } from './svg/Google';
export { default as ArrowButton } from './svg/ArrowButton';
export { default as XButton } from './svg/XButton';
export { default as CloseIcon } from './svg/CloseIcon';
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default function XButton() {
export default function CloseIcon() {
return (
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clipPath="url(#clip0_237_4362)">
Expand Down
4 changes: 2 additions & 2 deletions src/components/modal/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import XButton from '@/assets/svg/XButton';
import { CloseIcon } from '@/assets';

interface ModalProps {
children: React.ReactNode;
Expand All @@ -24,7 +24,7 @@ export default function Modal({
onClick={onClose}
className="cursor-pointer text-gray-400 hover:text-gray-600 ml-auto"
>
<XButton />
<CloseIcon />
</button>
</div>
<div className="overflow-y-auto flex-1 pr-2">{children}</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function ServiceContent() {
</div>

<div className="flex flex-col gap-2">
<h3 className="h3 text-gray-600">6조(책임의 제한)</h3>
<h3 className="h3 text-gray-600">제6조(책임의 제한)</h3>
<p>
본 서비스는 무료로 제공되는 서비스로, 운영팀의 고의 또는 중과실이 없는 한 서비스 이용
과정에서 발생한 손해에 대해 책임을 지지 않습니다.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Logo } from '@/assets';
import { Input, TermItem } from '@/components';
import ServiceContent from './signupModal/ServiceContent';
import InformationContent from './signupModal/InformationContent';
import ServiceContent from '@/components/modal/signupModal/ServiceContent';
import InformationContent from '@/components/modal/signupModal/InformationContent';

export default function SignupView() {
return (
Expand Down
Loading