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/community/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import DetailContent from '@/domains/community/detail/DetailContent';
import DetailHeader from '@/domains/community/detail/DetailHeader';
import DetailTitle from '@/domains/community/detail/DetailTitle';
import DetailTabDesktop from '@/domains/community/detail/tab/DetailTabDesktop';
import StarBg from '@/domains/shared/starBg/StarBg';
import StarBg from '@/domains/shared/components/star-bg/StarBg';

function Page() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/app/community/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import CommunityTab from '@/domains/community/main/CommunityTab';
import PostCard from '@/domains/community/main/PostCard';
import WriteBtn from '@/domains/community/main/WriteBtn';

import PageHeader from '@/domains/shared/pageHeader/PageHeader';
import PageHeader from '@/domains/shared/components/page-header/PageHeader';
import { Metadata } from 'next';

export const metadata: Metadata = {
Expand Down
12 changes: 6 additions & 6 deletions src/app/design-system/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

import Button from '@/shared/components/button/Button';
import TextButton from '@/shared/components/button/TextButton';
import Input from '@/shared/components/InputBox/Input';
import Input from '@/shared/components/Input-box/Input';
import { useState } from 'react';
import { customToast } from '@/shared/components/toast/CustomToastUtils';
import ModalLayout from '@/shared/components/modalPop/ModalLayout';
import SelectBox from '@/domains/shared/select-box/SelectBox';
import ModalLayout from '@/shared/components/modal-pop/ModalLayout';
import SelectBox from '@/domains/shared/components/select-box/SelectBox';

import Spinner from '@/shared/components/spinner/Spinner';
import LikeBtn from '@/domains/community/components/like/LikeBtn';
import Share from '@/domains/shared/share/Share';
import Keep from '@/domains/shared/keep/Keep';
import ConfirmModal from '@/shared/components/modalPop/ConfirmModal';
import Share from '@/domains/shared/components/share/Share';
import Keep from '@/domains/shared/components/keep/Keep';
import ConfirmModal from '@/shared/components/modal-pop/ConfirmModal';

function Page() {
const [isModalOpen, setModalOpen] = useState(false);
Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import '@/shared/styles/global.css';
import { Toaster } from 'react-hot-toast';
import Header from '@/shared/components/header/Header';
import FooterWrapper from '@/shared/components/footer/FooterWrapper';
import ScrollTopBtnWrapper from '@/shared/components/scrollTop/ScrollTopBtnWrapper';
import ScrollTopBtnWrapper from '@/shared/components/scroll-top/ScrollTopBtnWrapper';
export const metadata: Metadata = {
title: 'SSOUL',
description: '칵테일을 좋아하는 사람들을 위한 서비스',
Expand Down
2 changes: 1 addition & 1 deletion src/app/recipe/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import DetailMain from '@/domains/recipe/details/DetailMain';
import StarBg from '@/domains/shared/starBg/StarBg';
import StarBg from '@/domains/shared/components/star-bg/StarBg';

function page() {
return (
Expand Down
6 changes: 3 additions & 3 deletions src/app/recipe/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Metadata } from 'next';
import SelectBox from '@/domains/shared/select-box/SelectBox';
import Input from '@/shared/components/InputBox/Input';
import SelectBox from '@/domains/shared/components/select-box/SelectBox';
import Input from '@/shared/components/Input-box/Input';

import Accordion from '../../domains/recipe/components/main/Accordion';
import CocktailList from '@/domains/recipe/CocktailList';
import PageHeader from '@/domains/shared/pageHeader/PageHeader';
import PageHeader from '@/domains/shared/components/page-header/PageHeader';

export const metadata: Metadata = {
title: 'SSOUL | 칵테일레시피',
Expand Down
2 changes: 1 addition & 1 deletion src/domains/community/CommunityFilter.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import SelectBox from '../shared/select-box/SelectBox';
import SelectBox from '../shared/components/select-box/SelectBox';

function CommunityFilter() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/domains/community/CommunityHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import PageHeader from '../shared/pageHeader/PageHeader';
import PageHeader from '../shared/components/page-header/PageHeader';

function CommunityHeader() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/domains/community/PostCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Image from 'next/image';
import prePost from '@/shared/assets/images/prepost_img.webp';

import PostInfo from './PostInfo';
import Label from '../shared/label/Label';
import Label from '../shared/components/label/Label';

function PostCard({ label }: { label: string }) {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/domains/community/detail/DetailHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Label from '@/domains/shared/label/Label';
import Label from '@/domains/shared/components/label/Label';
import EditDelete from './EditDelete';

function DetailHeader() {
Expand Down
2 changes: 1 addition & 1 deletion src/domains/community/detail/comment/DetailComment.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Button from '@/shared/components/button/Button';
import Input from '@/shared/components/InputBox/Input';
import Input from '@/shared/components/Input-box/Input';

function DetailComment() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/domains/community/detail/tab/DetailTabDesktop.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import Share from '@/domains/shared/share/Share';
import Share from '@/domains/shared/components/share/Share';
import CommentBtn from '../../components/comment/CommentBtn';
import LikeBtn from '../../components/like/LikeBtn';

Expand Down
2 changes: 1 addition & 1 deletion src/domains/community/detail/tab/DetailTabMobile.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import Share from '@/domains/shared/share/Share';
import Share from '@/domains/shared/components/share/Share';
import LikeBtn from '../../components/like/LikeBtn';

function DetailTabMobile() {
Expand Down
2 changes: 1 addition & 1 deletion src/domains/community/main/CommunityFilter.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import SelectBox from '../../shared/select-box/SelectBox';
import SelectBox from '../../shared/components/select-box/SelectBox';

function CommunityFilter() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/domains/community/main/CommunityHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import PageHeader from '../../shared/pageHeader/PageHeader';
import PageHeader from '../../shared/components/page-header/PageHeader';

function CommunityHeader() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/domains/community/main/PostCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Image from 'next/image';
import prePost from '@/shared/assets/images/prepost_img.webp';

import PostInfo from './PostInfo';
import Label from '../../shared/label/Label';
import Label from '../../shared/components/label/Label';

function PostCard({ label }: { label: string }) {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/domains/login/components/LogoutConfirm.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import ConfirmModal from '@/shared/components/modalPop/ConfirmModal';
import ConfirmModal from '@/shared/components/modal-pop/ConfirmModal';

interface Props {
open: boolean;
Expand Down
2 changes: 1 addition & 1 deletion src/domains/login/components/WelcomeModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import Image from 'next/image';

import Button from '@/shared/components/button/Button';
import ModalLayout from '@/shared/components/modalPop/ModalLayout';
import ModalLayout from '@/shared/components/modal-pop/ModalLayout';
import Ssury from '@/shared/assets/ssury/ssury_jump.webp';
import { useRouter } from 'next/navigation';

Expand Down
2 changes: 1 addition & 1 deletion src/domains/recipe/CocktailCard.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { StaticImageData } from 'next/image';
import Image from 'next/image';
import Img from '@/shared/assets/images/dummy/exampleCocktail.png';
import Keep from '../shared/keep/Keep';
import Keep from '../shared/components/keep/Keep';

interface Props {
src?: StaticImageData;
Expand Down
2 changes: 1 addition & 1 deletion src/domains/recipe/components/main/Accordion.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import SelectBox from '@/domains/shared/select-box/SelectBox';
import SelectBox from '@/domains/shared/components/select-box/SelectBox';

const selectOption = [
{
Expand Down
2 changes: 1 addition & 1 deletion src/domains/recipe/details/DetailItem.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from 'next/image';
import Short from '@/shared/assets/icons/short_36.svg';
import Example from '@/shared/assets/images/dummy/exampleCocktail.png';
import Label from '@/domains/shared/label/Label';
import Label from '@/domains/shared/components/label/Label';

function DetailItem() {
return (
Expand Down
4 changes: 2 additions & 2 deletions src/domains/recipe/details/DetailsHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Share from '@/domains/shared/share/Share';
import Share from '@/domains/shared/components/share/Share';
import BackBtn from '../components/details/BackBtn';
import Keep from '@/domains/shared/keep/Keep';
import Keep from '@/domains/shared/components/keep/Keep';

function DetailsHeader() {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/domains/recommend/components/ChatCocktailCard.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from 'next/image';
import Dummy from '@/shared/assets/images/dummy/exampleCocktail.png';
import Link from 'next/link';
import Keep from '@/domains/shared/keep/Keep';
import Keep from '@/domains/shared/components/keep/Keep';

function ChatCocktailCard() {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import StarBg from '../starBg/StarBg';
import StarBg from '../star-bg/StarBg';

interface Props {
title: string;
Expand Down