Skip to content

Commit

Permalink
fix: change file name
Browse files Browse the repository at this point in the history
  • Loading branch information
jaemin-s committed Nov 30, 2024
1 parent 59090cd commit e57b794
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion app/presentation/component/ParallaxContainer.tsx
Original file line number Diff line number Diff line change
@@ -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 => {
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/article/AboutMe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/card/AboutMeCard.tsx
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/svg/IconCalendar.tsx
Original file line number Diff line number Diff line change
@@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/svg/IconEdu.tsx
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/svg/IconLocation.tsx
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/svg/IconMail.tsx
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/svg/IconPhone.tsx
Original file line number Diff line number Diff line change
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/svg/IconProfile.tsx
Original file line number Diff line number Diff line change
@@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/text/ArticleHeader.tsx
Original file line number Diff line number Diff line change
@@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/text/BodyText.tsx
Original file line number Diff line number Diff line change
@@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/text/DateText.tsx
Original file line number Diff line number Diff line change
@@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/component/text/SubHeaderText.tsx
Original file line number Diff line number Diff line change
@@ -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) => {
Expand Down
2 changes: 1 addition & 1 deletion app/presentation/screen/MainScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down
2 changes: 1 addition & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -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: [
Expand Down

0 comments on commit e57b794

Please sign in to comment.