From e57b794eeb537a8b5c3f6032e444f767d474104c Mon Sep 17 00:00:00 2001 From: jaemin Date: Sat, 30 Nov 2024 23:39:31 +0900 Subject: [PATCH] fix: change file name --- app/presentation/component/ParallaxContainer.tsx | 2 +- app/presentation/component/article/AboutMe.tsx | 2 +- app/presentation/component/card/AboutMeCard.tsx | 2 +- app/presentation/component/svg/IconCalendar.tsx | 2 +- app/presentation/component/svg/IconEdu.tsx | 2 +- app/presentation/component/svg/IconLocation.tsx | 2 +- app/presentation/component/svg/IconMail.tsx | 2 +- app/presentation/component/svg/IconPhone.tsx | 2 +- app/presentation/component/svg/IconProfile.tsx | 2 +- app/presentation/component/text/ArticleHeader.tsx | 2 +- app/presentation/component/text/BodyText.tsx | 2 +- app/presentation/component/text/DateText.tsx | 2 +- app/presentation/component/text/SubHeaderText.tsx | 2 +- app/presentation/screen/MainScreen.tsx | 2 +- tailwind.config.ts | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/app/presentation/component/ParallaxContainer.tsx b/app/presentation/component/ParallaxContainer.tsx index 29a782b..7301108 100644 --- a/app/presentation/component/ParallaxContainer.tsx +++ b/app/presentation/component/ParallaxContainer.tsx @@ -1,4 +1,4 @@ -import { ParallaxProps } from '@/app/domain/entities/Parallax.entity' +import { ParallaxProps } from '@/app/domain/entities/parallax.entity' import React from 'react' const ParallaxContainer = ({ children, imgSrc, backgroundColor }: ParallaxProps): JSX.Element => { diff --git a/app/presentation/component/article/AboutMe.tsx b/app/presentation/component/article/AboutMe.tsx index 7f46c38..c006d92 100644 --- a/app/presentation/component/article/AboutMe.tsx +++ b/app/presentation/component/article/AboutMe.tsx @@ -7,7 +7,7 @@ import IconLocation from '../svg/IconLocation' import IconPhone from '../svg/IconPhone' import IconMail from '../svg/IconMail' import IconEdu from '../svg/IconEdu' -import { Colors } from '@/app/domain/enums/Color.enum' +import { Colors } from '@/app/domain/enums/color.enum' const AboutMe = () => { const size = '48px' diff --git a/app/presentation/component/card/AboutMeCard.tsx b/app/presentation/component/card/AboutMeCard.tsx index 661863c..1fc8fad 100644 --- a/app/presentation/component/card/AboutMeCard.tsx +++ b/app/presentation/component/card/AboutMeCard.tsx @@ -1,4 +1,4 @@ -import { AboutMeProps } from '@/app/domain/entities/AboutMe.entity' +import { AboutMeProps } from '@/app/domain/entities/aboutMe.entity' import React from 'react' import SubHeaderText from '../text/SubHeaderText' import BodyText from '../text/BodyText' diff --git a/app/presentation/component/svg/IconCalendar.tsx b/app/presentation/component/svg/IconCalendar.tsx index 34b973d..496ff78 100644 --- a/app/presentation/component/svg/IconCalendar.tsx +++ b/app/presentation/component/svg/IconCalendar.tsx @@ -1,4 +1,4 @@ -import { SvgStyle } from '@/app/domain/entities/SvgStyle.entity' +import { SvgStyle } from '@/app/domain/entities/svgStyle.entity' import React from 'react' const IconCalendar = ({ color = '#ffffff', width = '24px', height = '24px' }: SvgStyle) => { diff --git a/app/presentation/component/svg/IconEdu.tsx b/app/presentation/component/svg/IconEdu.tsx index c9a172c..9605a39 100644 --- a/app/presentation/component/svg/IconEdu.tsx +++ b/app/presentation/component/svg/IconEdu.tsx @@ -1,4 +1,4 @@ -import { SvgStyle } from '@/app/domain/entities/SvgStyle.entity' +import { SvgStyle } from '@/app/domain/entities/svgStyle.entity' import React from 'react' function IconEdu({ color = '#ffffff', width = '24px', height = '24px' }: SvgStyle) { diff --git a/app/presentation/component/svg/IconLocation.tsx b/app/presentation/component/svg/IconLocation.tsx index 666f806..354fab3 100644 --- a/app/presentation/component/svg/IconLocation.tsx +++ b/app/presentation/component/svg/IconLocation.tsx @@ -1,4 +1,4 @@ -import { SvgStyle } from '@/app/domain/entities/SvgStyle.entity' +import { SvgStyle } from '@/app/domain/entities/svgStyle.entity' import React from 'react' function IconLocation({ color = '#ffffff', width = '24px', height = '24px' }: SvgStyle) { diff --git a/app/presentation/component/svg/IconMail.tsx b/app/presentation/component/svg/IconMail.tsx index e95e1ec..aa528eb 100644 --- a/app/presentation/component/svg/IconMail.tsx +++ b/app/presentation/component/svg/IconMail.tsx @@ -1,4 +1,4 @@ -import { SvgStyle } from '@/app/domain/entities/SvgStyle.entity' +import { SvgStyle } from '@/app/domain/entities/svgStyle.entity' import React from 'react' function IconMail({ color = '#ffffff', width = '24px', height = '24px' }: SvgStyle) { diff --git a/app/presentation/component/svg/IconPhone.tsx b/app/presentation/component/svg/IconPhone.tsx index 8d1eec8..b6f6706 100644 --- a/app/presentation/component/svg/IconPhone.tsx +++ b/app/presentation/component/svg/IconPhone.tsx @@ -1,4 +1,4 @@ -import { SvgStyle } from '@/app/domain/entities/SvgStyle.entity' +import { SvgStyle } from '@/app/domain/entities/svgStyle.entity' import React from 'react' function IconPhone({ color = '#ffffff', width = '24px', height = '24px' }: SvgStyle) { diff --git a/app/presentation/component/svg/IconProfile.tsx b/app/presentation/component/svg/IconProfile.tsx index 1ea251a..386af0e 100644 --- a/app/presentation/component/svg/IconProfile.tsx +++ b/app/presentation/component/svg/IconProfile.tsx @@ -1,4 +1,4 @@ -import { SvgStyle } from '@/app/domain/entities/SvgStyle.entity' +import { SvgStyle } from '@/app/domain/entities/svgStyle.entity' import React from 'react' const IconProfile = ({ color = '#ffffff', width = '24px', height = '24px' }: SvgStyle) => { diff --git a/app/presentation/component/text/ArticleHeader.tsx b/app/presentation/component/text/ArticleHeader.tsx index 3a58e98..7c8f3b9 100644 --- a/app/presentation/component/text/ArticleHeader.tsx +++ b/app/presentation/component/text/ArticleHeader.tsx @@ -1,4 +1,4 @@ -import { TextProps } from '@/app/domain/entities/Text.entity' +import { TextProps } from '@/app/domain/entities/text.entity' import React from 'react' const ArticleHeader = ({ children, className = '' }: TextProps) => { diff --git a/app/presentation/component/text/BodyText.tsx b/app/presentation/component/text/BodyText.tsx index a8ca3fd..c5b765c 100644 --- a/app/presentation/component/text/BodyText.tsx +++ b/app/presentation/component/text/BodyText.tsx @@ -1,4 +1,4 @@ -import { TextProps } from '@/app/domain/entities/Text.entity' +import { TextProps } from '@/app/domain/entities/text.entity' import React from 'react' const BodyText = ({ children, className = '' }: TextProps) => { diff --git a/app/presentation/component/text/DateText.tsx b/app/presentation/component/text/DateText.tsx index a355d3f..1f880ea 100644 --- a/app/presentation/component/text/DateText.tsx +++ b/app/presentation/component/text/DateText.tsx @@ -1,4 +1,4 @@ -import { TextProps } from '@/app/domain/entities/Text.entity' +import { TextProps } from '@/app/domain/entities/text.entity' import React from 'react' const DateText = ({ children, className = '' }: TextProps) => { diff --git a/app/presentation/component/text/SubHeaderText.tsx b/app/presentation/component/text/SubHeaderText.tsx index aefe5dc..df8f6ba 100644 --- a/app/presentation/component/text/SubHeaderText.tsx +++ b/app/presentation/component/text/SubHeaderText.tsx @@ -1,4 +1,4 @@ -import { TextProps } from '@/app/domain/entities/Text.entity' +import { TextProps } from '@/app/domain/entities/text.entity' import React from 'react' const SubHeaderText = ({ children, className = '' }: TextProps) => { diff --git a/app/presentation/screen/MainScreen.tsx b/app/presentation/screen/MainScreen.tsx index 403cbc8..231dd52 100644 --- a/app/presentation/screen/MainScreen.tsx +++ b/app/presentation/screen/MainScreen.tsx @@ -5,7 +5,7 @@ import AboutMe from '../component/article/AboutMe' import Skills from '../component/article/Skills' import Projects from '../component/article/Projects' import Career from '../component/article/Career' -import { Colors } from '@/app/domain/enums/Color.enum' +import { Colors } from '@/app/domain/enums/color.enum' const MainScreen = () => { return ( diff --git a/tailwind.config.ts b/tailwind.config.ts index 2da8846..7e5c3e9 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -1,5 +1,5 @@ import type { Config } from 'tailwindcss' -import { Colors } from './app/domain/enums/Color.enum' +import { Colors } from './app/domain/enums/color.enum' export default { content: [