Skip to content

Commit

Permalink
12th commit changes -- change resume copy, Updating all .jsx SocialLi…
Browse files Browse the repository at this point in the history
…nks, Timeline, Skills, Contact
  • Loading branch information
MasterLenoX committed Nov 20, 2023
1 parent e3c5338 commit 3b1ba15
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 13 deletions.
Binary file not shown.
4 changes: 2 additions & 2 deletions src/components/Contact.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'

const Contact = () => {
return (
<div name='contact' className="w-full h-screen bg-gradient-to-b from-slate-950 via-slate-950 to-black py-4 text-white">
<div name='contact' className="w-full h-screen bg-gradient-to-b from-black via-black to-blue-950 py-4 text-white">


<div className='flex flex-col p-4 justify-center max-w-screen-lg mx-auto h-full'>
Expand Down Expand Up @@ -35,7 +35,7 @@ const Contact = () => {
className='p-2 bg-transparent border-2 rounded-md text-white focus:outline-none'
></textarea>

<button className='text-white bg-gradient-to-b from-cyan-900 to-blue-950 px-6 py-3 my-8 mx-auto flex items-center rounded-md hover:scale-110 duration-300'>SEND</button>
<button className='text-white bg-gradient-to-b from-cyan-900 to-blue-950 px-6 py-3 my-8 mx-auto flex items-center rounded-md hover:scale-110 duration-300'>Submit</button>
</form>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/components/Skills.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const Skills = () => {
// }
];
return (
<div name='skills' className='h-screen w-full bg-gradient-to-b from-gray-950 via-gray-950 to-indigo-950'>
<div name='skills' className='h-screen w-full bg-gradient-to-b from-gray-950 via-gray-950 to-slate-950'>

<div className='max-w-screen-lg mx-auto p-4 flex flex-col justify-center w-full h-full text-white'>
<div className="col">
Expand Down
8 changes: 4 additions & 4 deletions src/components/SocialLinks.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react'
import {FaGithub, FaLinkedin, FaYahoo, FaFacebook} from 'react-icons/fa';
// import {HiOutlineMail} from 'react-icons/hi';
import {FaGithub, FaLinkedin, FaFacebook} from 'react-icons/fa';
import {HiOutlineMail} from 'react-icons/hi';
import {BiLogoGmail} from 'react-icons/bi'
import {BsFillPersonLinesFill} from 'react-icons/bs';

Expand Down Expand Up @@ -41,7 +41,7 @@ const links = [
id: 4,
child: (
<>
Yahoo <FaYahoo size={25}/>
Email <HiOutlineMail size={25}/>
</>
),
href: 'mailto:[email protected]',
Expand All @@ -53,7 +53,7 @@ const links = [
Resume <BsFillPersonLinesFill size={25}/>
</>
),
href: '/ljte_resume.pdf',
href: '/LeonJamesEmperadoResume.pdf',
style: 'rounded-tr-md ',
download: true,
},
Expand Down
13 changes: 7 additions & 6 deletions src/components/Timeline.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,34 +37,35 @@ const Timeline = () => {
title: "Feb 2020 - Mar 2020",
cardTitle: "Intern | Web Developer Trainee",
cardSubtitle:"ZANK POS Enterprises inc. | Baliuag, Bulacan, Philippines",
cardDetailedText: "learning JOOMLA, WordPress, HTML/CSS/JavaScript/Nodejs/Bootstrap | Testing & Debugging | Stop Internship during COVID-19"
cardDetailedText: "Learning Joomla, WordPress, Bootstrap, HTML, CSS, Ajax, JavaScript, PHP, Node.js | Helping Senior to fix databases and websites | Testing software with or without bugs encountered | Stop Internship during COVID-19"
},
{
id: 6,
title: "Aug 2021 - Apr 2023",
cardTitle: "Junior Programmer",
cardSubtitle:"ACLT Computing Inc | Makati City, Manila, Philippines",
cardDetailedText: "learning ASP.Net C# MVC, Azure SQL, Telerik Reporting | Testing & Debugging | Scripting | DevOps Git"
cardDetailedText: "learning ASP.Net C# MVC, Azure SQL, Telerik Reporting | Testing & Debugging | Scripting | DevOps Git | Database administration and website design | Built the logic for a streamlined ad-serving platform that scaled | Testing System and Errors fix "
},
{
id: 7,
title: "Nov 2021 - Apr 2023",
cardTitle: "Software QA Tester",
cardSubtitle:"ACLT Computing Inc. | Makati City, Manila, Philippines",
cardDetailedText: "learning ASP.Net C# MVC, Azure SQL, Telerik Reporting | Testing & Debugging | Scripting | DevOps Git"
cardDetailedText: "learning ASP.Net C# MVC, Azure SQL, Telerik Reporting | Testing & Debugging | Scripting | DevOps Git | Database administration and website design | Built the logic for a streamlined ad-serving platform that scaled | Testing System and Errors fix "

},
{
id: 8,
title: "Oct 2023 - Present",
title: "Oct 2023 - Dec 2023",
cardTitle: "Web Developer Part-time (Contract)",
cardSubtitle:"Keynote Business Solutions Inc. | Tomball, Texas, USA",
cardDetailedText: "learning ASP.Net C# MVC, Azure SQL, Telerik Reporting | Testing & Debugging | Scripting | DevOps Git"
cardDetailedText: "Building Website using Vue.js, React.js, HTML, CSS, JavaScript, PHP, Laravel, and/or Wordpress | Uploading webhosting using GitHub, Firebase, and/or Netlify"
}
];


return (
<div name='timeline' className='bg-gradient-to-b from-indigo-950 via-indigo-950 to-slate-950 w-full text-white md:h-screen'>
<div name='timeline' className='bg-gradient-to-b from-slate-950 via-slate-950 to-black w-full text-white md:h-screen'>
<div className='max-w-screen-lg p-6 mx-auto flex flex-col justify-center w-full h-full'>
<div className='pb-8'>
<p className='text-4xl font-semibold inline border-b-4 border-cyan-400'>Experience & Education</p>
Expand Down

0 comments on commit 3b1ba15

Please sign in to comment.