-
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
15 changed files
with
499 additions
and
362 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
|
||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Syne&display=swap" rel="stylesheet"> | ||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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,10 @@ | ||
import React from "react" | ||
|
||
|
||
export default function About(){ | ||
return( | ||
<div> | ||
<h1>About</h1> | ||
</div> | ||
) | ||
} |
Empty file.
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,15 @@ | ||
import React from "react" | ||
|
||
export default function Brand(){ | ||
return( | ||
<div className="brand-container "> | ||
<div className="developer-wrapper"> | ||
<h1 className="developer-name">Hello, my name is <br/> Justin Hoang</h1> | ||
<p className="developer-introduction">As an eager learner and developer, I am delicated <br/>to making ideas into reality by web application </p> | ||
</div> | ||
<div className = "photo-wrapper"> | ||
<img src="src/images/developer-photo.jpeg" alt="Justin Hoang" className="developer-image"/> | ||
</div> | ||
</div> | ||
) | ||
} |
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,9 @@ | ||
import React from "react" | ||
|
||
export default function Contacts(){ | ||
return ( | ||
<div> | ||
<h1>Contacts</h1> | ||
</div> | ||
) | ||
} |
Empty file.
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,9 @@ | ||
import React from "react" | ||
|
||
export default function Projects(){ | ||
return( | ||
<div> | ||
<h1>Projects</h1> | ||
</div> | ||
) | ||
} |
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,10 +1,10 @@ | ||
import React from "React" | ||
import React from "react" | ||
|
||
|
||
export default function Footer() { | ||
return ( | ||
<footer> | ||
<p>© 2023 - Developeed by Hoang Nhat Truong</p> | ||
<footer className = "footer-wrapper"> | ||
<p>© 2023 - Developed by Hoang Nhat Truong</p> | ||
</footer> | ||
) | ||
} |
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,28 +1,28 @@ | ||
import React from "react" | ||
import { NavLink } from "react-router-dom" | ||
import { NavLink, Link } from "react-router-dom" | ||
|
||
|
||
export default function Header() { | ||
const isActiveLink= { | ||
textDecoration: "underline", | ||
fontWeight: "bold", | ||
color: "green" | ||
|
||
} | ||
return ( | ||
<header> | ||
<NavLink to = "/home" style = {({isActive}) => isActive ? isActiveLink : null } > | ||
Home | ||
</NavLink> | ||
<NavLink to = "/about" style = {({isActive}) => isActive ? isActiveLink : null }> | ||
About | ||
</NavLink> | ||
<NavLink to = "/projects" style = {({isActive}) => isActive ? isActiveLink : null } > | ||
Projects | ||
</NavLink> | ||
<NavLink to = "/album" style = {({isActive}) => isActive ? isActiveLink : null }> | ||
Album | ||
</NavLink> | ||
<Link className = "brand-name" to = "/brand">JustIn</Link> | ||
<nav> | ||
<NavLink to = "/about" style = {({isActive}) => isActive ? isActiveLink : null }> | ||
About | ||
</NavLink> | ||
<NavLink to = "/projects" style = {({isActive}) => isActive ? isActiveLink : null } > | ||
Projects | ||
</NavLink> | ||
<NavLink to = "/contacts" style = {({isActive}) => isActive ? isActiveLink : null }> | ||
Contacts | ||
</NavLink> | ||
</nav> | ||
|
||
</header> | ||
) | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.