-
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
1 parent
0c20a51
commit 324f9ff
Showing
16 changed files
with
147 additions
and
154 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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
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
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
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
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
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
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
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,34 @@ | ||
import React from 'react'; | ||
import { useNavigate } from 'react-router-dom'; | ||
|
||
import { Button, Header, Portefolio } from '../../components'; | ||
|
||
import { HomeProps } from './types'; | ||
import { StyledColumn, StyledContainer, StyledOverlay, StyledVideo, StyledVideoContainer } from './styles'; | ||
|
||
export const Home: React.FC<HomeProps> = ({ profile }) => { | ||
const navigate = useNavigate(); | ||
|
||
return ( | ||
<StyledContainer> | ||
<Header> | ||
<Button size="large" label="Projects" onClick={() => navigate('/projects')} /> | ||
</Header> | ||
<StyledVideoContainer> | ||
<StyledVideo src="/blurred_video.mp4" autoPlay loop playsInline muted /> | ||
<StyledOverlay> | ||
<StyledColumn> | ||
<Portefolio | ||
label={profile.label} | ||
img={profile.img} | ||
headline={profile.headline} | ||
currentStack={profile.currentTechStack} | ||
otherStack={profile.otherToolsFrameworks} | ||
cards={profile.cards} | ||
/> | ||
</StyledColumn> | ||
</StyledOverlay> | ||
</StyledVideoContainer> | ||
</StyledContainer> | ||
); | ||
}; |
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 @@ | ||
export * from './Home'; |
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
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,3 @@ | ||
export interface HomeProps { | ||
profile: any; | ||
} |
Oops, something went wrong.