Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/Home.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/LOGO.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon.ico
Binary file not shown.
16 changes: 2 additions & 14 deletions src/components/about/socials.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,7 @@ const Socials = () => {
<div className="socials">
<div className="social">
<a href={INFO.socials.twitter} target="_blank" rel="noreferrer">
<div className="social-icon">
<FontAwesomeIcon
icon={faTwitter}
className="social-icon"
/>
</div>
<div className="social-text">Follow on Twitter</div>

</a>
</div>

Expand Down Expand Up @@ -61,13 +55,7 @@ const Socials = () => {
target="_blank"
rel="noreferrer"
>
<div className="social-icon">
<FontAwesomeIcon
icon={faInstagram}
className="social-icon"
/>
</div>
<div className="social-text">Follow on Instagram</div>

</a>
</div>

Expand Down
6 changes: 2 additions & 4 deletions src/components/common/footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ const Footer = () => {
<li className="footer-nav-link-item">
<Link to="/">Home</Link>
</li>
<li className="footer-nav-link-item">
<Link to="/about">About</Link>
</li>

<li className="footer-nav-link-item">
<Link to="/projects">Projects</Link>
</li>
Expand All @@ -29,7 +27,7 @@ const Footer = () => {

<div className="footer-credits">
<div className="footer-credits-text">
© 2023 Tharindu.dev. All Rights Reserved.

</div>
</div>
</div>
Expand Down
10 changes: 1 addition & 9 deletions src/components/common/navBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,7 @@ const NavBar = (props) => {
>
<Link to="/">Home</Link>
</li>
<li
className={
active === "about"
? "nav-item active"
: "nav-item"
}
>
<Link to="/about">About</Link>
</li>

<li
className={
active === "projects"
Expand Down
14 changes: 7 additions & 7 deletions src/data/user.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const INFO = {
main: {
title: "Reactfolio by truethari",
name: "Tharindu N.",
email: "[email protected]",
logo: "../logo.png",
title: "Reactfolio",
name: "Adrain Ortiz",
email: "[email protected]",
logo: "../LOGO.jpeg",
},

socials: {
Expand All @@ -16,7 +16,7 @@ const INFO = {
},

homepage: {
title: "Full-stack web and mobile app developer, and amateur astronaut.",
title: "Second Year at the University of Puerto Rico",
description:
"I am a backend developer with expertise in Node.js. I have experience in building scalable, secure and reliable web applications using various frameworks and technologies. I enjoy solving complex problems and learning new skills. I am passionate about creating high-quality code that follows best practices and industry standards. I am always looking for new challenges and opportunities to grow as a developer.",
},
Expand All @@ -35,7 +35,7 @@ const INFO = {

projects: [
{
title: "Project 1",
title: "Space Station Tracker",
description:
"Lorem ipsum dolor sit amet. Et incidunt voluptatem ex tempore repellendus qui dicta nemo sit deleniti minima.",
logo: "https://cdn.jsdelivr.net/npm/programming-languages-logos/src/javascript/javascript.png",
Expand All @@ -44,7 +44,7 @@ const INFO = {
},

{
title: "Project 2",
title: "BrickFLow",
description:
"Lorem ipsum dolor sit amet. Et incidunt voluptatem ex tempore repellendus qui dicta nemo sit deleniti minima.",
logo: "https://cdn.jsdelivr.net/npm/programming-languages-logos/src/python/python.png",
Expand Down
56 changes: 2 additions & 54 deletions src/pages/homepage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const Homepage = () => {
<div className="homepage-image-container">
<div className="homepage-image-wrapper">
<img
src="homepage.jpg"
src="Home.jpeg"
alt="about"
className="homepage-image"
/>
Expand All @@ -113,59 +113,7 @@ const Homepage = () => {
</div>
</div>

<div className="homepage-socials">
<a
href={INFO.socials.twitter}
target="_blank"
rel="noreferrer"
>
<FontAwesomeIcon
icon={faTwitter}
className="homepage-social-icon"
/>
</a>
<a
href={INFO.socials.github}
target="_blank"
rel="noreferrer"
>
<FontAwesomeIcon
icon={faGithub}
className="homepage-social-icon"
/>
</a>
<a
href={INFO.socials.stackoverflow}
target="_blank"
rel="noreferrer"
>
<FontAwesomeIcon
icon={faStackOverflow}
className="homepage-social-icon"
/>
</a>
<a
href={INFO.socials.instagram}
target="_blank"
rel="noreferrer"
>
<FontAwesomeIcon
icon={faInstagram}
className="homepage-social-icon"
/>
</a>
<a
href={`mailto:${INFO.main.email}`}
target="_blank"
rel="noreferrer"
>
<FontAwesomeIcon
icon={faMailBulk}
className="homepage-social-icon"
/>
</a>
</div>


<div className="homepage-projects">
<AllProjects />
</div>
Expand Down