Skip to content

Commit

Permalink
chore :: 폴더 경로 에러 해결을 위한 커밋
Browse files Browse the repository at this point in the history
  • Loading branch information
ftery0 committed Sep 10, 2024
1 parent 38aa37d commit 4a257d9
Show file tree
Hide file tree
Showing 45 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/app/banner/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use client";
import Banner from "@/component/homes/banner/index"
import Banner from "@/components/home/banner/index"
const banner =()=>{
return(
<>
Expand Down
2 changes: 1 addition & 1 deletion src/app/declaration/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use client";
import Declaration from "@/component/homes/declaration/index"
import Declaration from "@/components/home/declaration/index"
const DeclarationPage = ()=>{
return(
<Declaration/>
Expand Down
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Metadata } from "next";
import QueryClientProvider from "../component/common/provider/query-provider";
import Layout from "../component/common/layout/index";
import QueryClientProvider from "../components/common/provider/query-provider";
import Layout from "../components/common/layout/index";
import StyledComponentsRegistry from "@/libs/registry";
import "@/styles/font.css"
export const metadata: Metadata = {
Expand Down
2 changes: 1 addition & 1 deletion src/app/login/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use client";
import LoginPage from "@/component/auth/index";
import LoginPage from "@/components/auth/index";
import React from "react";

export default function Login() {
Expand Down
2 changes: 1 addition & 1 deletion src/app/member/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use client';
import Main from "@/component/homes/main";
import Main from "@/components/home/main";
const Memeber = ()=>{
return <Main/>
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"use client"
import Approve from "@/component/homes/approve";
import Approve from "@/components/home/approve";

const MainPage = () => {
return <Approve />;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import member2 from "@/assets/img/home/Vector.png";
import chat2 from "@/assets/img/home/chat.png";
import banner2 from "@/assets/img/home/page_info.png";
import defaultImg from "@/assets/img/home/Avatar1.png";
import Logout from "@/component/homes/logout/index";
import Logout from "@/components/home/logout/index";
import { usePathname } from "next/navigation";
import * as S from "./style";
import { useGetProfileInfo } from "@/queries/Profile/Profile.query";
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import MemberTable from "./memberTable/index";
import { SearchBar } from "../searchBar/searchBar";
import { MEMBER_TABLE_ITEMS } from "@/constant/member/Member.constant";
import { useMemberSearchStore } from "@/store/member";
import SkeletonComponent from "@/component/common/skleton/index";
import ErrorBoundary from "@/component/common/error";
import SkeletonComponent from "@/components/common/skleton/index";
import ErrorBoundary from "@/components/common/error";
import { Suspense, useState } from "react";
const Main = () => {
const { memberSearch, setMemberSearch } = useMemberSearchStore();
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
],
"paths": {
"@/*": ["./src/*"],
"@/components/*": ["src/component/*"],
"@/components/*": ["src/components/*"],
"@/hooks/*": ["src/hooks/*"],
"@constant": ["src/constant/*"],
"@queries":["src/queries/*"],
Expand Down

0 comments on commit 4a257d9

Please sign in to comment.