Skip to content

Commit

Permalink
Fix: 파일명 및 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
aowjarkwk committed Dec 4, 2023
1 parent 4847e0c commit f966e83
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 40 deletions.
35 changes: 0 additions & 35 deletions components/featureItem/FeatureArticle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,39 +48,4 @@ const FeatureArticle = ({ title, description, imageSrc, alt, idx }: FeatureArtic
);
};

// const ArticleEven = ({ children }: { children: ReactNode }) => {
// return <S.ArticleEven>{children}</S.ArticleEven>;
// };

// const TextWrap = ({ children }: { children: ReactNode }) => {
// return <S.TextWrap>{children}</S.TextWrap>;
// };

// const Title = ({ children }: { children: ReactNode }) => {
// return <S.Title>{children}</S.Title>;
// };

// const Description = ({ children }: { children: ReactNode }) => {
// return <S.Description>{children}</S.Description>;
// };

// const FeatureImage = ({ imageSrc, alt }: { imageSrc: string; alt: string }) => {
// return (
// <S.FeatureImageContainer>
// <Image width={385} height={315} layout="responsive" src={imageSrc} alt={alt} />
// </S.FeatureImageContainer>
// );
// };

// const FeatureBr = () => {
// return <S.FeatureItemBr />;
// // };

// FeatureArticle.ArticleEven = ArticleEven;
// FeatureArticle.TextWrap = TextWrap;
// FeatureArticle.Title = Title;
// FeatureArticle.Description = Description;
// FeatureArticle.FeatureImage = FeatureImage;
// FeatureArticle.FeatureBr = FeatureBr;

export default FeatureArticle;
4 changes: 2 additions & 2 deletions components/featureList/FeatureList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const articles = [
title: (
<>
링크를 폴더로
<br /> <span> 관리</span>하세요
<br /> <span>관리</span>하세요
</>
),
description: (
Expand All @@ -43,7 +43,7 @@ const articles = [
title: (
<>
저장한 링크를
<br /> <span>공유해</span> 보세요.
<br /> <span>공유</span> 보세요.
</>
),
description: (
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions layouts/globalLayout/GlobalLayout.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<UserProvider>
Expand Down
File renamed without changes.

0 comments on commit f966e83

Please sign in to comment.