-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
124 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export interface TextProps { | ||
str: string; | ||
color?: string; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,7 @@ | ||
import ParallaxContainer from "./presentation/component/ParallaxContainer"; | ||
import MainScreen from "./presentation/screen/MainScreen"; | ||
|
||
export default function Home() { | ||
return ( | ||
<div className="bg-gray-600 w-screen h-screen overflow-y-scroll"> | ||
<ParallaxContainer imgSrc={"https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/bg-01.webp"}> | ||
<article className="h-screen flex items-center justify-center text-2xl"> | ||
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</span> | ||
</article> | ||
</ParallaxContainer> | ||
<ParallaxContainer imgSrc={"https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/bg-02.webp"}> | ||
<article className="h-screen flex items-center justify-center text-2xl"> | ||
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</span> | ||
</article> | ||
</ParallaxContainer> | ||
<ParallaxContainer imgSrc={"https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/bg-03.webp"}> | ||
<article className="h-screen flex items-center justify-center text-2xl"> | ||
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</span> | ||
</article> | ||
</ParallaxContainer> | ||
<ParallaxContainer imgSrc={"https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/bg-04.webp"}> | ||
<article className="h-screen flex items-center justify-center text-2xl"> | ||
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</span> | ||
</article> | ||
</ParallaxContainer> | ||
<ParallaxContainer imgSrc={"https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/bg-05.webp"}> | ||
<article className="h-screen flex items-center justify-center text-2xl"> | ||
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</span> | ||
</article> | ||
</ParallaxContainer> | ||
</div> | ||
<MainScreen/> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react' | ||
import ArticleHeader from '../text/ArticleHeader' | ||
|
||
type Props = {} | ||
|
||
const AboutMe = (props: Props) => { | ||
return ( | ||
<div className='h-full flex flex-col items-center justify-center'> | ||
<ArticleHeader str='ABOUT ME'/> | ||
</div> | ||
) | ||
} | ||
|
||
export default AboutMe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react' | ||
import ArticleHeader from '../text/ArticleHeader' | ||
|
||
type Props = {} | ||
|
||
const Career = (props: Props) => { | ||
return ( | ||
<div className='h-full flex flex-col items-center justify-center'> | ||
<ArticleHeader str='CAREER'/> | ||
</div> | ||
) | ||
} | ||
|
||
export default Career |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react' | ||
import ArticleHeader from '../text/ArticleHeader' | ||
|
||
type Props = {} | ||
|
||
const Projects = (props: Props) => { | ||
return ( | ||
<div className='h-full flex flex-col items-center justify-center'> | ||
<ArticleHeader str='PROJECTS'/> | ||
</div> | ||
) | ||
} | ||
|
||
export default Projects |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from 'react' | ||
import ArticleHeader from '../text/ArticleHeader' | ||
|
||
type Props = {} | ||
|
||
const SimpleIntroduce = (props: Props) => { | ||
|
||
const str = `SIM JAE MIN` | ||
const str2 = `안녕하세요\n지속적인 성장과 혁신을 추구하는\n열정적인 프론트엔드 개발자\n심재민입니다` | ||
return ( | ||
<div className='h-full flex flex-col items-center justify-center'> | ||
<ArticleHeader str={str} color='#ffeeaa'/> | ||
<p className='whitespace-pre-wrap text-center text-2xl'>{str2}</p> | ||
</div> | ||
) | ||
} | ||
|
||
export default SimpleIntroduce |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react' | ||
import ArticleHeader from '../text/ArticleHeader' | ||
|
||
type Props = {} | ||
|
||
const Skills = (props: Props) => { | ||
return ( | ||
<div className='h-full flex flex-col items-center justify-center'> | ||
<ArticleHeader str='SKILLS' color='#000000'/> | ||
</div> | ||
) | ||
} | ||
|
||
export default Skills |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { TextProps } from '@/app/domain/entities/text.entity' | ||
import React from 'react' | ||
|
||
const ArticleHeader = ({ str, color = '#ffffff' }: TextProps) => { | ||
return ( | ||
<p className='font-extrabold text-8xl whitespace-pre-wrap text-center pb-4 border-b-4 mb-8' style={{ color }}>{str}</p> | ||
) | ||
} | ||
|
||
export default ArticleHeader |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from 'react' | ||
import ParallaxContainer from '../component/ParallaxContainer' | ||
import SimpleIntroduce from '../component/article/SimpleIntroduce' | ||
import AboutMe from '../component/article/AboutMe' | ||
import Skills from '../component/article/Skills' | ||
import Projects from '../component/article/Projects' | ||
import Career from '../component/article/Career' | ||
|
||
type Props = {} | ||
|
||
const MainScreen = (props: Props) => { | ||
return ( | ||
<div className="bg-gray-600 w-screen h-screen overflow-y-scroll"> | ||
<ParallaxContainer imgSrc={"https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/bg-01.webp"}> | ||
<SimpleIntroduce/> | ||
</ParallaxContainer> | ||
<ParallaxContainer imgSrc={"https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/bg-02.webp"}> | ||
<AboutMe/> | ||
</ParallaxContainer> | ||
<ParallaxContainer imgSrc={"https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/bg-03.webp"}> | ||
<Skills/> | ||
</ParallaxContainer> | ||
<ParallaxContainer imgSrc={"https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/bg-04.webp"}> | ||
<Career/> | ||
</ParallaxContainer> | ||
<ParallaxContainer imgSrc={"https://github.com/jaemin-s/jaemin-s/raw/refs/heads/main/image/bg-05.webp"}> | ||
<Projects/> | ||
</ParallaxContainer> | ||
</div> | ||
) | ||
} | ||
|
||
export default MainScreen |