From f966e836455f520120f97729ccf6a6473594d8a6 Mon Sep 17 00:00:00 2001 From: aowjarkwk Date: Mon, 4 Dec 2023 15:22:32 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=ED=8C=8C=EC=9D=BC=EB=AA=85=20=EB=B0=8F?= =?UTF-8?q?=20=EC=98=A4=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/featureItem/FeatureArticle.tsx | 35 ------------------- components/featureList/FeatureList.tsx | 4 +-- layouts/{GlobalStyle.tsx => GlobalStyle.ts} | 0 .../{Folder.style.tsx => Folder.style.ts} | 0 ...Layout.style.tsx => GlobalLayout.style.ts} | 0 layouts/globalLayout/GlobalLayout.tsx | 6 ++-- .../{Shared.style.tsx => Shared.style.ts} | 0 7 files changed, 5 insertions(+), 40 deletions(-) rename layouts/{GlobalStyle.tsx => GlobalStyle.ts} (100%) rename layouts/folder/{Folder.style.tsx => Folder.style.ts} (100%) rename layouts/globalLayout/{GlobalLayout.style.tsx => GlobalLayout.style.ts} (100%) rename layouts/shared/{Shared.style.tsx => Shared.style.ts} (100%) diff --git a/components/featureItem/FeatureArticle.tsx b/components/featureItem/FeatureArticle.tsx index 7a8ed4acf..364ce6b0d 100644 --- a/components/featureItem/FeatureArticle.tsx +++ b/components/featureItem/FeatureArticle.tsx @@ -48,39 +48,4 @@ const FeatureArticle = ({ title, description, imageSrc, alt, idx }: FeatureArtic ); }; -// const ArticleEven = ({ children }: { children: ReactNode }) => { -// return {children}; -// }; - -// const TextWrap = ({ children }: { children: ReactNode }) => { -// return {children}; -// }; - -// const Title = ({ children }: { children: ReactNode }) => { -// return {children}; -// }; - -// const Description = ({ children }: { children: ReactNode }) => { -// return {children}; -// }; - -// const FeatureImage = ({ imageSrc, alt }: { imageSrc: string; alt: string }) => { -// return ( -// -// {alt} -// -// ); -// }; - -// const FeatureBr = () => { -// return ; -// // }; - -// FeatureArticle.ArticleEven = ArticleEven; -// FeatureArticle.TextWrap = TextWrap; -// FeatureArticle.Title = Title; -// FeatureArticle.Description = Description; -// FeatureArticle.FeatureImage = FeatureImage; -// FeatureArticle.FeatureBr = FeatureBr; - export default FeatureArticle; diff --git a/components/featureList/FeatureList.tsx b/components/featureList/FeatureList.tsx index b0344c94a..9931ae5db 100644 --- a/components/featureList/FeatureList.tsx +++ b/components/featureList/FeatureList.tsx @@ -27,7 +27,7 @@ const articles = [ title: ( <> 링크를 폴더로 -
관리하세요 +
관리하세요 ), description: ( @@ -43,7 +43,7 @@ const articles = [ title: ( <> 저장한 링크를 -
공유해 보세요. +
공유해 보세요. ), description: ( diff --git a/layouts/GlobalStyle.tsx b/layouts/GlobalStyle.ts similarity index 100% rename from layouts/GlobalStyle.tsx rename to layouts/GlobalStyle.ts diff --git a/layouts/folder/Folder.style.tsx b/layouts/folder/Folder.style.ts similarity index 100% rename from layouts/folder/Folder.style.tsx rename to layouts/folder/Folder.style.ts diff --git a/layouts/globalLayout/GlobalLayout.style.tsx b/layouts/globalLayout/GlobalLayout.style.ts similarity index 100% rename from layouts/globalLayout/GlobalLayout.style.tsx rename to layouts/globalLayout/GlobalLayout.style.ts diff --git a/layouts/globalLayout/GlobalLayout.tsx b/layouts/globalLayout/GlobalLayout.tsx index 795a949cf..eed5dd1e5 100644 --- a/layouts/globalLayout/GlobalLayout.tsx +++ b/layouts/globalLayout/GlobalLayout.tsx @@ -1,7 +1,7 @@ -import { UserProvider } from "@/utils/UserContext"; -import GlobalNav from "../../components/globalNav/GlobalNav"; -import Footer from "../../components/footer/Footer"; +import Footer from "@/components/footer/Footer"; +import { GlobalNav } from "@/components/globalNav/GlobalNav.style"; import * as S from "@/layouts/globalLayout/GlobalLayout.style"; +import { UserProvider } from "@/utils/UserContext"; function GlobalLayout() { return ( diff --git a/layouts/shared/Shared.style.tsx b/layouts/shared/Shared.style.ts similarity index 100% rename from layouts/shared/Shared.style.tsx rename to layouts/shared/Shared.style.ts